# Metacareers — 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 browse Meta job openings across all departments and locations. Filter by keyword, experience level, or role category — including University Graduate and AR/VR specializations — and retrieve comprehensive details for each listing, including job description, requirements, salary range, and application link.

**Category:** Jobs | **Website:** [metacareers.com/](https://metacareers.com/) | **Docs:** [parse.bot/marketplace/e79027aa-a32c-4b56-b339-66bd1eb09f20/metacareers-com-api](https://parse.bot/marketplace/e79027aa-a32c-4b56-b339-66bd1eb09f20/metacareers-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-metacareers-com-api-e79027aa/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_arvr_jobs

Retrieve job listings related to AR and VR applications from Meta's Reality Labs and AR/VR team. Returns the same job summary shape as search_jobs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return. Server page-size buckets: 1-5 returns up to 5, 6-10 up to 10, 11-50 up to 50, 51+ up to 100. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-metacareers-com-api-e79027aa/get_arvr_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>"}'
```

### get_job_details

Fetch full details for a single job posting by its numeric ID. Returns comprehensive information including description, salary range, employment type, and application URL. Job IDs are obtained from search_jobs or the category listing endpoints.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_id` | string | Yes | The numeric ID of the job posting (e.g. '2188512621989850'). Obtain from search_jobs.jobs[*].id or other listing endpoints. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-metacareers-com-api-e79027aa/get_job_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"job_id":"<string>"}'
```

### get_university_grad_jobs

Retrieve job listings specifically for University Graduate positions, including Business, Engineering/Tech/Design, and PhD/Postdoc roles. Returns the same job summary shape as search_jobs. May return fewer results than limit if few positions are open.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return. Server page-size buckets: 1-5 returns up to 5, 6-10 up to 10, 11-50 up to 50, 51+ up to 100. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-metacareers-com-api-e79027aa/get_university_grad_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>"}'
```

### search_jobs

Full-text search over Meta job listings. query matches title and description; omitting it returns all available jobs. Results are job summaries (id, title, locations). Limit controls the page-size bucket the server uses (5/10/50/100). Does not paginate beyond a single page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return. Server page-size buckets: 1-5 returns up to 5, 6-10 up to 10, 11-50 up to 50, 51+ up to 100. |
| `query` | string | No | Search keyword to filter jobs by title or description. Omitting returns all available jobs. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-metacareers-com-api-e79027aa/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","query":"<string>"}'
```
