# Indeed (United Kingdom) — 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 for jobs across Indeed UK and retrieve detailed information including job listings, application links, and company profiles. Access comprehensive job data to compare opportunities, learn about employers, and find direct application pathways.

**Category:** Jobs | **Website:** [indeed.co.uk/](https://indeed.co.uk/) | **Docs:** [parse.bot/marketplace/e450a9a2-bfb7-4d62-b775-2dd1e03064d1/indeed-co-uk-api](https://parse.bot/marketplace/e450a9a2-bfb7-4d62-b775-2dd1e03064d1/indeed-co-uk-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-indeed-co-uk-api-e450a9a2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_profile

Retrieve a company's profile from Indeed UK including overall rating, review count, happiness score, and detailed about information (industry, founding year, headquarters, revenue range, CEO approval). The company_slug is the path segment from the Indeed company URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_slug` | string | Yes | The company's slug from the Indeed URL path (e.g. Amazon, Google, WSP) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-indeed-co-uk-api-e450a9a2/get_company_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_slug":"<string>"}'
```

### get_job_application_link

Extract the application URL from a job posting. Returns the link users can follow to apply for the position. The job_key is obtained from search_jobs results. Some jobs use Indeed's internal application system and will not have an external apply link (returns null).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_key` | string | Yes | The unique Indeed job key from search_jobs results (job_key field) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-indeed-co-uk-api-e450a9a2/get_job_application_link \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"job_key":"<string>"}'
```

### get_job_details

Retrieve full details of a single job posting using its job key. Returns the job description as HTML, salary, company information, and an application link. The job_key is obtained from search_jobs results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_key` | string | Yes | The unique Indeed job key from search_jobs results (job_key field) |

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

### search_jobs

Full-text search over Indeed UK job listings. Returns paginated results with 15 jobs per page. Pagination uses an offset-based start parameter in increments of 10. Each job includes a job_key usable with get_job_details and get_job_application_link.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | No | Location to search in (e.g. London, Manchester, United Kingdom) |
| `query` | string | No | Job title or keywords to search for (e.g. developer, apprenticeship, data engineer) |
| `radius` | integer | No | Search radius in miles from the specified location |
| `salary` | string | No | Minimum salary filter value (e.g. 50000) |
| `start` | integer | No | Results offset for pagination (increments of 10) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-indeed-co-uk-api-e450a9a2/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>","query":"<string>","radius":"<integer>","salary":"<string>","start":"<integer>"}'
```
