# Totaljobs — 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 job listings from across the UK on TotalJobs, then access detailed information about specific positions including requirements, salary, and application details. Quickly compare opportunities and find roles that match your criteria.

**Category:** Jobs | **Website:** [totaljobs.com/](https://totaljobs.com/) | **Docs:** [parse.bot/marketplace/1e5ba073-eefe-4032-83dd-eaf84c99e500/totaljobs-com-api](https://parse.bot/marketplace/1e5ba073-eefe-4032-83dd-eaf84c99e500/totaljobs-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-totaljobs-com-api-1e5ba073/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_detail

Retrieve full details for a specific job listing using its TotalJobs URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | The full URL of the job listing page |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-totaljobs-com-api-1e5ba073/get_job_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search_jobs

Search for job listings on totaljobs.com by keyword and location. Returns paginated results with job titles, companies, locations, salaries, posting times, URLs, and description snippets. Each page returns up to 25 results. At least one of query or location should be provided for meaningful results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | No | Location to search in (e.g. 'London', 'Manchester', 'Birmingham') |
| `page` | integer | No | Page number for pagination (1-based) |
| `query` | string | No | Job title or keyword to search for (e.g. 'software engineer', 'nurse') |
| `radius` | integer | No | Search radius in miles from the location. Common values: 5, 10, 15, 20, 25, 50. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-totaljobs-com-api-1e5ba073/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>","page":"<integer>","query":"<string>","radius":"<integer>"}'
```
