# Drimble — 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 access detailed business information from Drimble.nl, including company addresses, SBI classifications, and activity descriptions. Find specific companies or browse listings to get comprehensive details about Dutch businesses.

**Category:** Business Directories | **Website:** [drimble.nl/](https://drimble.nl/) | **Docs:** [parse.bot/marketplace/89c2758c-aef2-4854-ab97-b01d841488c4/drimble-nl-api](https://parse.bot/marketplace/89c2758c-aef2-4854-ab97-b01d841488c4/drimble-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-drimble-nl-api-89c2758c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_details

Get full details for a specific business listing including address, SBI codes, legal form, employee count, and descriptions. Requires the company URL from search_companies results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | The company detail page URL from search_companies results (e.g. 'www.drimble.nl/bedrijf/<city>/<company-id>/<slug>.html'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-drimble-nl-api-89c2758c/get_company_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search_companies

Search for companies on Drimble.nl using keywords and filters (province, municipality, city, SBI code). Returns paginated company results along with available SBI and geographic filter options.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `bid` | integer | No | Buurt (Neighborhood) ID filter. |
| `gid` | integer | No | Gemeente (Municipality) ID filter. |
| `page` | integer | No | Page number for pagination. |
| `pid` | integer | No | Plaats (City) ID filter. |
| `prid` | integer | No | Province ID filter (e.g. 27 for Noord-Holland, 28 for Zuid-Holland). |
| `query` | string | No | Keyword search for company name or related terms. |
| `sbi` | string | No | SBI code filter. Accepted values: A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S. |
| `wid` | integer | No | Wijk (District) ID filter. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-drimble-nl-api-89c2758c/search_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"bid":"<integer>","gid":"<integer>","page":"<integer>","pid":"<integer>","prid":"<integer>","query":"<string>","sbi":"<string>","wid":"<integer>"}'
```
