# Indeed (German) — 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.

> Access data from de.indeed.com.

**Category:** Jobs | **Website:** [de.indeed.com/](https://de.indeed.com/) | **Docs:** [parse.bot/marketplace/1d5ab61e-bff5-4b6e-ae7f-e21c7d124265/de-indeed-com-api](https://parse.bot/marketplace/1d5ab61e-bff5-4b6e-ae7f-e21c7d124265/de-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-de-indeed-com-api-1d5ab61e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_overview

Retrieve company profile and metadata by company slug. Returns ratings, industry, size, headquarters, and other details. The company_slug is the path segment after /cmp/ in Indeed company URLs, obtainable from get_job_details results at company_details.company_slug.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_slug` | string | Yes | The company slug from Indeed (the path segment after /cmp/ in Indeed company URLs) |

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

### get_job_details

Retrieve full details for a single job listing by its job key. Returns the complete job description (HTML), salary information, contract type, and company metadata including a company_slug for further lookup via get_company_overview.

**Estimated cost:** Metered

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

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

### search_jobs

Full-text search for job listings on Indeed Germany. Matches query against job titles, keywords, and company names. Returns up to 15 jobs per call; manually advance via start offset (increments of 10). Each result includes basic metadata; use get_job_details for the full description.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | No | Job location (city, state, or zip code) |
| `query` | string | Yes | Job title, keywords, or company name to search for |
| `start` | integer | No | Pagination offset (increments of 10, e.g. 0, 10, 20) |

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