# Working Nomads — 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 remote job listings from Working Nomads to find digital nomad-friendly positions tailored to your location, job category, and experience level. Discover opportunities across various remote roles and companies that actively hire location-independent workers.

**Category:** Jobs | **Website:** [www.workingnomads.com/](https://www.workingnomads.com/) | **Docs:** [parse.bot/marketplace/ab370118-4a93-43b4-8d48-702e8518ae42/workingnomads-com-api](https://parse.bot/marketplace/ab370118-4a93-43b4-8d48-702e8518ae42/workingnomads-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-workingnomads-com-api-ab370118/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_jobs

Search remote job listings with optional filters for keyword, category, and region. Returns paginated results sorted by featured/premium status first, then by publication date descending. Each page returns up to 100 jobs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter by job category. Omitting returns all categories. |
| `limit` | integer | No | Number of results per page. Must be between 1 and 100. |
| `page` | integer | No | Page number for pagination (1-indexed). |
| `query` | string | No | Free-text search query matched against job title, tags, company, and description (e.g. 'python', 'react developer'). |
| `region` | string | No | Filter by geographic region. Matches jobs that list the specified region in their locations. Omitting returns all regions. |

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