# Careers Un — 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 current job openings at the United Nations, filtering by job network, job family, and other criteria. Retrieve structured data on available positions across UN departments and duty stations worldwide.

**Category:** Jobs | **Website:** [careers.un.org/jobopening?language=en&data=%257B%2522jf%2522:%255B%255D,%2522jn%2522:%255B%2522LEGALNET%2522,%2522POLNET%2522%255D%257D](https://careers.un.org/jobopening?language=en&data=%257B%2522jf%2522:%255B%255D,%2522jn%2522:%255B%2522LEGALNET%2522,%2522POLNET%2522%255D%257D) | **Docs:** [parse.bot/marketplace/0527ded6-ecad-4e1a-a168-6c153930802b/careers-un-org-api](https://parse.bot/marketplace/0527ded6-ecad-4e1a-a168-6c153930802b/careers-un-org-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-careers-un-org-api-0527ded6/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_openings

Retrieve all open job positions matching the specified job network and job family filters. Returns structured data for each position including title, level, department, duty station, dates, and direct URL. Automatically paginates through all matching results. When no filters are provided, defaults to LEGALNET and POLNET networks. Each returned job includes a direct URL to its posting on the UN Careers portal.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `items_per_page` | integer | No | Number of items per internal API page. Higher values reduce API calls. |
| `job_families` | string | No | Comma-separated job family codes to filter by (e.g. LEG, POL, HRI, HRA). Omitting returns all families within the selected networks. |
| `job_networks` | string | No | Comma-separated job network codes to filter by. Accepted values: LEGALNET, POLNET, DEVNET, ITECNET, PSNET, SAFETYNET, ECONSOCNET, MGTNET, LOGNET, INFONET. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-careers-un-org-api-0527ded6/get_job_openings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"items_per_page":"<integer>","job_families":"<string>","job_networks":"<string>"}'
```
