# Stagemarkt — 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 Dutch MBO internship companies on Stagemarkt.nl and access detailed information including contact details, addresses, and their available internship specializations with sector and qualification levels. Get company recommendations and browse comprehensive profiles to find the perfect internship match.

**Category:** Education | **Website:** [stagemarkt.nl/](https://stagemarkt.nl/) | **Docs:** [parse.bot/marketplace/90eb3f7e-dc7a-4ac7-a834-4d72531c7fad/stagemarkt-nl-api](https://parse.bot/marketplace/90eb3f7e-dc7a-4ac7-a834-4d72531c7fad/stagemarkt-nl-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-stagemarkt-nl-api-90eb3f7e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_detail

Get detailed information about a specific company including contact email, contact persons, internship positions (leerplaatsen), and internship specialty qualifications (kwalificaties with CREBO code, sector, and level). Requires a company UUID obtained from search_companies results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_id` | string | Yes | Company UUID (the 'id' field from search_companies results, e.g. 'ffbe4905-c2e6-e611-80d1-bb82e25ba0ea') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-stagemarkt-nl-api-90eb3f7e/get_company_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_id":"<string>"}'
```

### search_companies

Search for internship companies (leerbedrijven) in the Stagemarkt register. Returns a paginated list of companies with name, email, phone, website, address, company size, and number of internship positions. Without a query, returns all companies. Filters available in the response can be used to narrow results by sector, company size, or features. Paginated via page number; each page returns up to page_size results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_size` | string | No | Filter by company size ID (UUID from filters in response) |
| `country` | string | No | Filter by country code (e.g., 'NL', 'BE', 'DE') |
| `page` | integer | No | Page number for pagination (1-based) |
| `page_size` | integer | No | Number of results per page |
| `query` | string | No | Search keyword for company name (e.g., 'bakker') |
| `sector` | string | No | Filter by sector ID (UUID from filters in response, e.g. '02ab4f5e-b356-e011-87cd-001372415b01') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-stagemarkt-nl-api-90eb3f7e/search_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_size":"<string>","country":"<string>","page":"<integer>","page_size":"<integer>","query":"<string>","sector":"<string>"}'
```

### suggest_companies

Get autocomplete suggestions for company names. Returns a list of matching company name strings and their total count. Useful for discovering valid company names before a full search.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `term` | string | Yes | Search term for autocomplete (e.g., 'bakker') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-stagemarkt-nl-api-90eb3f7e/suggest_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"term":"<string>"}'
```
