# StepStone — 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 jobs on Stepstone.de and retrieve detailed job listings including salary information and similar job recommendations. Access structured job data covering titles, companies, locations, salaries, and application links.

**Category:** Jobs | **Website:** [stepstone.com/](https://stepstone.com/) | **Docs:** [parse.bot/marketplace/10475ce1-c119-4b07-b8cd-f6ae6cdad6d3/stepstone-com-api](https://parse.bot/marketplace/10475ce1-c119-4b07-b8cd-f6ae6cdad6d3/stepstone-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-stepstone-com-api-10475ce1/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_detail

Retrieve full details of a specific job listing including title, description (HTML), company info, salary estimates, location, employment type, contract type, and posting dates. The job_url is the relative path returned in search_jobs items[*].url.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_url` | string | Yes | The relative path of the job listing as returned in search_jobs results items[*].url (e.g. '/jobs--Software-Engineer-Berlin-Example-Company--12345678-inline.html'), or the full URL. |

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

### get_salary_info

Retrieve salary information for a specific job listing. Returns the same full job detail payload which includes predicted salary data in listingHeader.CESalary and reduxPreloadedState.predictedSalary.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_url` | string | Yes | The relative path of the job listing (e.g. '/jobs--Software-Engineer-Berlin-Example-Company--12345678-inline.html') as returned in search_jobs results[*].url, or the full URL. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-stepstone-com-api-10475ce1/get_salary_info \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"job_url":"<string>"}'
```

### get_similar_jobs

Retrieve the full job detail page for a specific listing, which may include similar job recommendations when available. Returns the same payload structure as get_job_detail.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_url` | string | Yes | The relative path of the job listing (e.g. '/jobs--Software-Engineer-Berlin-Example-Company--12345678-inline.html') as returned in search_jobs results[*].url, or the full URL. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-stepstone-com-api-10475ce1/get_similar_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"job_url":"<string>"}'
```

### search_jobs

Full-text search over Stepstone.de job listings. Returns paginated results (25 per page) with job summaries, available filters, and pagination metadata. Paginates via the page parameter (1-based integer). Each item includes a relative URL path suitable for passing to get_job_detail.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `age` | string | No | Date posted filter: 'age_1' for last 24 hours, 'age_7' for last 7 days. |
| `am` | string | No | Application method filter: 'EXTERNAL' for company website, 'INTERNAL' for Easy Apply. |
| `fdl` | string | No | Job language filter: 'de' for German, 'en' for English. |
| `keyword` | string | Yes | Job title or keyword to search for (e.g. 'software engineer', 'developer', 'data scientist'). |
| `location` | string | No | Location to search in (city, region, or postcode). Omitting returns results for all of Germany. |
| `page` | integer | No | Page number for pagination (1-based). |
| `sort` | integer | No | Sorting order: 1 for Relevance, 2 for Date. |
| `wfh` | integer | No | Work from home filter: 1 for Fully remote, 2 for Partially remote. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-stepstone-com-api-10475ce1/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"age":"<string>","am":"<string>","fdl":"<string>","keyword":"<string>","location":"<string>","page":"<integer>","sort":"<integer>","wfh":"<integer>"}'
```
