# KBLI



The standard Indonesian business classification — search it by keyword, read any code in full, straight from the BPS publication.



## KBLI Search

Search the KBLI 2025 business classification by keyword — the step before every company registration form can be filled.

- Method: `GET`
- Path: `/v1/kbli`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `q` | string | optional | Keyword against the title, or a five-digit code for an exact match. Omits to the start of the table. |
| `limit` | integer | optional | Entries per page. |

**Example request**

```bash
curl https://api.diraz.ae/v1/kbli \
  -H "Authorization: Bearer drz_live_…"
```

**Example response**

```json
{
  "data": {
    "total": 2,
    "entries": [
      { "code": "56101", "title": "AKTIVITAS PENYEDIAAN MAKANAN DI BANGUNAN TETAP", "description": "Kelompok ini mencakup aktivitas penyediaan layanan makanan kepada pelanggan yang bertempat di sebagian atau seluruh bangunan tetap/permanen, tidak bisa dibongkar pasang, tidak berpindah -pindah dan tidak dapat dipindahkan, baik yang menyediakan pelayanan di  meja melalui proses memasak terlebih dahu" }
    ]
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ"
  }
}
```

## KBLI Lookup

One KBLI 2025 code in full: the title and the classification's own description, including what it covers and what it excludes.

- Method: `GET`
- Path: `/v1/kbli/{code}`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `code` | path segment | required | Five-digit KBLI 2025 code, e.g. `01111` for corn farming. |

**Example request**

```bash
curl https://api.diraz.ae/v1/kbli/%7Bcode%7D \
  -H "Authorization: Bearer drz_live_…"
```

**Example response**

```json
{
  "data": {
    "code": "01111",
    "title": "PERTANIAN JAGUNG",
    "description": "Kelompok ini mencakup kegiatan pertanian jagung, termasuk di dalamnya kegiatan pengolahan lahan, penanaman, pemeliharaan, pemanenan, dan kegiatan pascapanen yang dilakukan sebagai satu rangkaian kegiatan. Kelompok ini juga mencakup kegiatan penanaman jagung untuk menghasilkan benih berupa biji. Kelompok ini tidak mencakup pertanian jagung manis, lihat kelompok 01133."
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ"
  }
}
```