# CBS SBI Code Search API

> CBS SBI Code Search API is a paid API for AI agents from api.getapi.nl, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Searches the Dutch CBS Standard Business Identification (SBI) classification codes by keyword, returning matching industry codes and titles

## Facts

- Endpoint: GET https://api.getapi.nl/api/v1/cbs/sbi/search
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cbs-sbi-code-search-api-e4a450eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ARdHqydZI5T-HE2JKwD3M

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability cbs-sbi-code-search-api-e4a450eb
```

Example prompt: Search the Dutch CBS SBI classification for 'hypotheek' and tell me all matching industry codes with their titles and hierarchy levels.

## When to prefer this

Choose this endpoint when you need to look up or validate official Dutch CBS SBI industry classification codes for a given business activity keyword. It is ideal for KVK/Chamber of Commerce registration workflows, business data enrichment, compliance checks, or market research on Dutch industry sectors. Prefer this over generic business search APIs when you specifically need the Dutch standard industry taxonomy with hierarchical SBI codes.

## Known failure modes

- No results found for obscure or misspelled query terms — found: false with empty results array
- Query in English may return no matches since CBS SBI titles are in Dutch
- Very broad queries may return a large number of loosely related results
- API may return HTTP 402 if payment is not provided via x402 protocol
- Ambiguous Dutch terms may match unintended industry categories

## How this service works

Ontdek, test en integreer krachtige API&#039;s voor web scraping, e-mailvalidatie, geolocatie
    en meer. Gratis starten.

## Output

A JSON object indicating whether results were found (found: boolean), the original query string, total number of matches, and an array of result objects each containing the SBI code string (e.g. '64.92.3'), numeric code, hierarchy level (integer), and Dutch-language title of the industry classification.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "q": "Amsterdam",
      "limit": 1
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {
     "found": true,
     "query": "hypotheek",
     "total": 2,
     "results": [
      {
       "code": "64.92",
       "level": 4,
       "title": "Overige kredietverstrekking",
       "code_numeric": "6492"
      },
      {
       "code": "64.92.3",
       "level": 5,
       "title": "Hypotheekverstrekkers",
       "code_numeric": "64923"
      }
     ]
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "found": true,
  "query": "hypotheek",
  "total": 2,
  "results": [
   {
    "code": "64.92",
    "level": 4,
    "title": "Overige kredietverstrekking",
    "code_numeric": "6492"
   },
   {
    "code": "64.92.3",
    "level": 5,
    "title": "Hypotheekverstrekkers",
    "code_numeric": "64923"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cbs-sbi-code-search-api-e4a450eb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.getapi.nl](https://www.zero.xyz/host/api.getapi.nl/llms.txt)
