# Wayup — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and filter college-focused job and internship listings from WayUp by category, job type, and location. Access detailed information about specific listings, including job descriptions, qualifications, company info, and posting dates.

**Category:** Jobs | **Website:** [www.wayup.com/](https://www.wayup.com/) | **Docs:** [parse.bot/marketplace/527e4f6d-76a2-4739-9023-aa04c396c2d9/wayup-com-api](https://parse.bot/marketplace/527e4f6d-76a2-4739-9023-aa04c396c2d9/wayup-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-wayup-com-api-527e4f6d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_details

Get full details for a specific job listing including description, qualifications, company info, location, employment type, and date posted. Requires the full listing URL from search_listings results. Each call fetches one listing page — no batch support.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL of the job listing (from search_listings results, e.g. 'https://www.wayup.com/i-j-<job-title>-<company>-<id>/'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wayup-com-api-527e4f6d/get_listing_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### list_categories

List all available job categories for a given listing type. Returns category slugs and display names. Use the returned slugs as the 'category' parameter in search_listings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `type` | string | No | Listing type. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wayup-com-api-527e4f6d/list_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type":"<string>"}'
```

### search_listings

Search job and internship listings by category, type, and optional location. Returns listing titles, companies, locations, and URLs. Paginates as a single page up to `limit`. Use list_categories to discover all available category slugs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Job category slug (e.g., 'computer-science', 'finance', 'marketing', 'engineering'). Use list_categories endpoint to get all available slugs. |
| `limit` | integer | No | Maximum number of listings to return. |
| `location` | string | No | Location slug (e.g., 'new-york-ny', 'san-francisco-ca', 'chicago-il'). Leave empty for all locations. |
| `type` | string | No | Listing type. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wayup-com-api-527e4f6d/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","limit":"<integer>","location":"<string>","type":"<string>"}'
```
