# Careers Astrazeneca — 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 discover AstraZeneca job openings worldwide, complete with full job descriptions and direct application links. Filter opportunities by keyword, job category, country, and city to find positions that match your interests.

**Category:** Jobs | **Website:** [careers.astrazeneca.com/](https://careers.astrazeneca.com/) | **Docs:** [parse.bot/marketplace/a0d87ab4-f70b-438a-8a3c-29198681cd40/careers-astrazeneca-com-api](https://parse.bot/marketplace/a0d87ab4-f70b-438a-8a3c-29198681cd40/careers-astrazeneca-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-careers-astrazeneca-com-api-a0d87ab4/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_detail

Fetch the full detail page for a single job posting. Returns the HTML description, Schema.org structured data, requisition ID, and a direct application URL. The `url` input is the canonical job URL returned by search_jobs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Canonical URL of the job posting (from search_jobs results, e.g. "https://careers.astrazeneca.com/job/rockville/process-engineer/7684/95453340816"). |

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

### list_cities_by_country

List cities with open AstraZeneca positions within a specific country. Requires both the country facet ID and display name (both obtained from list_countries). Returns all matching cities in a single response.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country_facet_id` | string | Yes | Facet ID of the country as returned by list_countries (e.g. "2635167"). |
| `country_name` | string | Yes | Display name of the country exactly as returned by list_countries (e.g. "United Kingdom"). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-careers-astrazeneca-com-api-a0d87ab4/list_cities_by_country \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country_facet_id":"<string>","country_name":"<string>"}'
```

### list_countries

List all countries with open AstraZeneca positions and their job counts. Returns the full set in a single response — no pagination needed. Use country id and display values as inputs to list_cities_by_country.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-careers-astrazeneca-com-api-a0d87ab4/list_countries \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_job_categories

List all available job categories (functions/departments) at AstraZeneca with the count of open positions in each. Returns the full set in a single response — no pagination needed.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-careers-astrazeneca-com-api-a0d87ab4/list_job_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_jobs

Full-text search over AstraZeneca job openings worldwide. Returns paginated results with job titles, locations, and URLs. An empty query returns all open positions. Paginates via integer page counter; each page contains up to `limit` results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results per page (max 50). |
| `page` | integer | No | Page number for pagination (1-based). |
| `query` | string | No | Search keywords to match against job titles and descriptions. |

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