# Careers Dhl — 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 filter job listings across DHL Group's global careers portal by keywords, location, and other criteria with easy pagination to browse through results. Find positions matching specific job titles and requirements across multiple searches.

**Category:** Jobs | **Website:** [careers.dhl.com/eu/de/search-results](https://careers.dhl.com/eu/de/search-results) | **Docs:** [parse.bot/marketplace/5c3f488c-dcef-466e-bb66-06fcccca0e16/careers-dhl-com-api](https://parse.bot/marketplace/5c3f488c-dcef-466e-bb66-06fcccca0e16/careers-dhl-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-dhl-com-api-5c3f488c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_jobs

Search for jobs on DHL careers by keyword with pagination. Returns job listings including title, location, category, career level, description teaser, skills, and apply URL. Paginates via integer page number; each page returns up to page_size results. An empty keywords value returns all jobs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keywords` | string | No | Search keywords (e.g., 'Marketing', 'Analytics', 'E-Commerce') |
| `page` | integer | No | Page number (1-based) |
| `page_size` | integer | No | Number of results per page (max 100) |

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

### search_relevant_jobs

Search DHL careers across multiple keyword queries and filter results to only include jobs whose titles match specified patterns. Supports deduplication across queries and returns up to a configurable maximum number of matching results. Each pipe-separated keyword is issued as a separate search; results are merged and deduplicated by job ID before title filtering.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `max_results` | integer | No | Maximum number of matching jobs to return |
| `search_keywords` | string | No | Pipe-separated list of search keywords to query against the DHL careers portal (e.g., 'Software Engineer\|Data Analyst\|Product Manager'). Each keyword is issued as a separate search and results are merged with deduplication. |
| `title_patterns` | string | No | Pipe-separated list of title substrings to match against (case-insensitive). Only jobs whose titles contain at least one of these patterns will be returned. Example: 'software engineer\|data analyst\|product manager' |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-careers-dhl-com-api-5c3f488c/search_relevant_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"max_results":"<integer>","search_keywords":"<string>","title_patterns":"<string>"}'
```
