# GetApi CBS SBI Code Lookup

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

Retrieves Dutch CBS Standard Industrial Classification (SBI) codes, their hierarchy levels, titles, and parent relationships

## Facts

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

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 getapi-cbs-sbi-code-lookup-682f34e6
```

Example prompt: Can you look up all top-level CBS SBI sector codes for the Netherlands and show me which ones have subcategories?

## When to prefer this

Choose this endpoint when you need authoritative Dutch CBS SBI industry classification codes, especially for KVK registrations, Dutch business compliance, tax filings, or building industry taxonomies specific to the Netherlands. Prefer this over generic business classification APIs when the Dutch SBI standard is explicitly required.

## Known failure modes

- Invalid or non-existent SBI code returns empty results array with total 0
- Network timeout if CBS data source is unavailable
- Payment failure via x402 protocol returns 402 status before data is delivered
- Rate limiting if too many requests are made in quick succession

## How this service works

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

## Output

Returns a JSON object with a total count and a results array. Each result contains: SBI code (alphanumeric, e.g. 'A' or '01'), hierarchical level (1 = sector, 2 = division, etc.), Dutch-language title, parent_code (null for top-level), numeric code representation, and a boolean has_children flag indicating whether sub-codes exist.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "level": 1,
      "parent_code": "64"
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {
     "total": 2,
     "results": [
      {
       "code": "A",
       "level": 1,
       "title": "Landbouw, bosbouw en visserij",
       "parent_code": null,
       "code_numeric": "A",
       "has_children": true
      },
      {
       "code": "01",
       "level": 2,
       "title": "Landbouw, jacht en dienstverlening voor de landbouw en jacht",
       "parent_code": "A",
       "code_numeric": "01",
       "has_children": true
      }
     ]
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "total": 2,
  "results": [
   {
    "code": "A",
    "level": 1,
    "title": "Landbouw, bosbouw en visserij",
    "parent_code": null,
    "code_numeric": "A",
    "has_children": true
   },
   {
    "code": "01",
    "level": 2,
    "title": "Landbouw, jacht en dienstverlening voor de landbouw en jacht",
    "parent_code": "A",
    "code_numeric": "01",
    "has_children": true
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/getapi-cbs-sbi-code-lookup-682f34e6/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)
