# Jobs API
> Browse and filter the latest job postings — title, company, location, remote flag, job types and tags — across tech and beyond. Filter by keyword, location or remote-only. Powered by the Arbeitnow job board.

## Authentication
All requests require your oanor API key in the `x-oanor-key` header. Get one at https://www.oanor.com/developer/keys.

```bash
curl -H "x-oanor-key: oanor_live_…" "https://api.oanor.com/jobs-api/..."
```

## Pricing
- **Free** (Free) — 500 calls/Mo, 2 req/s
- **Basic** ($8/Mo) — 25,000 calls/Mo, 5 req/s
- **Pro** ($29/Mo) — 120,000 calls/Mo, 15 req/s
- **Mega** ($79/Mo) — 500,000 calls/Mo, 40 req/s

## Endpoints

### Jobs

#### `GET /v1/jobs` — Latest job postings (paginated)

**Parameters:**
- `page` (query, optional, string) — Page number Example: `1`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/jobs-api/v1/jobs?page=1"
```

**Response:**
```json
{
    "data": {
        "jobs": [
            {
                "url": "https://www.arbeitnow.com/jobs/companies/apaleo/senior-product-management-lead-munich-58103",
                "slug": "senior-product-management-lead-munich-58103",
                "tags": [],
                "title": "Senior Product Management Lead (f/m/d)",
                "remote": false,
                "company": "Apaleo",
                "location": "Munich, Bavaria, Germany",
                "job_types": [],
                "created_at": "2026-05-29T20:45:23.000Z",
                "description": "Join Apaleo and Shape the Future of Hospitality Tech! Apaleo is the world's most open, API-first property management platform powering the next generation of hospitality operations. Its modular, AI-powered infrastructure enables hoteliers to customise their tech stack, automate routine work, and deliver seamless, personalised guest experiences, powered by best-in-class apps and autonomous AI agents that adapt to every stay. If you're driven by the idea of making hospitality smarter, more human, and powered by cutting-edge technology, we'd love to hear from you. Fiscal and compliance is one of…"
            },
            {
                "url": "https://www.arbeitnow.com/jobs/companies/sumup/senior-analytics-engineer-run-grow-berlin-119045",
                "slug": "senior-analytics-engineer-run-grow-berlin-119045",
                "tags": [],
                "title": "Senior Analytics Engineer - Run & 
…(truncated, see openapi.json for full schema)
```

#### `GET /v1/search` — Filter the latest postings

**Parameters:**
- `q` (query, optional, string) — Keyword (title/company/tags) Example: `engineer`
- `location` (query, optional, string) — Location substring Example: `Berlin`
- `remote` (query, optional, string) — Remote only (true/false) Example: `true`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/jobs-api/v1/search?q=engineer&location=Berlin&remote=true"
```

**Response:**
```json
{
    "data": {
        "jobs": [],
        "count": 0,
        "query": "engineer",
        "remote": true,
        "location": "berlin"
    },
    "meta": {
        "timestamp": "2026-05-30T00:42:06.455Z",
        "request_id": "6f4c2cfd-6df6-442e-8964-214224d9667d"
    },
    "status": "ok",
    "message": "Search results retrieved successfully",
    "success": true
}
```


---
Marketplace page: https://www.oanor.com/api/jobs-api
OpenAPI spec: https://www.oanor.com/api/jobs-api/openapi.json
