# Uk Indeed — 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 job listings across Indeed UK and retrieve complete job details including descriptions, requirements, salary information, and application links. Filter by job type, experience level, location, remote preference, and more to find relevant opportunities.

**Category:** Jobs | **Website:** [uk.indeed.com/](https://uk.indeed.com/) | **Docs:** [parse.bot/marketplace/d4c1acb5-8dee-407f-99b7-b63842baebf9/uk-indeed-com-api](https://parse.bot/marketplace/d4c1acb5-8dee-407f-99b7-b63842baebf9/uk-indeed-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-uk-indeed-com-api-d4c1acb5/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_details

Retrieve full details for a specific job listing using its job key. Returns comprehensive information including full description, salary, job type, company rating, and apply link. The job key is obtained from search_jobs results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `jk` | string | Yes | The unique job key identifying the listing (from search_jobs results[*].job_key) |

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

### search_jobs

Search for job listings on Indeed UK with various filters. Returns a list of job cards with basic info (title, company, location) and a total results count. Only the first page of results is returned per call.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `explvl` | string | No | Education level filter |
| `fromage` | integer | No | Number of days since posted (1, 3, 7, 14) |
| `industry` | string | No | Industry sector code |
| `jt` | string | No | Job type filter |
| `location` | string | No | City, region, or postcode to search in |
| `query` | string | No | Keywords or job title to search for |
| `radius` | integer | No | Search radius in miles (5, 10, 15, 25, 50, 100) |
| `remotejob` | string | No | Remote work preference filter |
| `salary` | string | No | Minimum salary threshold (e.g. '£25,000') |
| `sort` | string | No | Sort order for results |

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

### search_student_jobs

Convenience endpoint to search for entry-level and early-career roles (internship, placement, graduate, summer) in a given location. Delegates to search_jobs with a title-based query targeting student-relevant job types.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | No | Location to search in |

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