# Cek Resi



Track any waybill most Indonesian courier across 27 couriers — JNE, J&T, SiCepat, SPX, Anteraja, Ninja, TIKI, POS and more, with status, ship date, receiver, and the full event history.



## Cek Resi

Track any waybill across 27 couriers — JNE, J&T, SiCepat, SPX, Anteraja, Ninja, TIKI, POS and more — with status, ship date, receiver, and the full event history.

- Method: `GET`
- Path: `/v1/resi/track/{waybill}`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `waybill` | path segment | required | A courier tracking number, e.g. `SPXID066455486358`. |
| `courier` | string | optional | Pin the courier when the number is ambiguous — every code is listed in `/v1/resi/courier`, e.g. `spx`, `jne`, `jnt`. |

**Example request**

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

**Example response**

```json
{
  "data": {
    "waybill": "SPXID066455486358",
    "ambiguous": false,
    "courier": { "code": "SPX", "name": "Shopee Express (SPX)" },
    "status": "Delivered",
    "summary": "Pesanan tiba di alamat tujuan. diterima oleh Yang bersangkutan.",
    "ship_date": "03/08/2026 12:11",
    "receiver": null,
    "customer_service": "1500702",
    "history": [
      { "date": "18/08/2026 16:35", "description": "Pesanan tiba di alamat tujuan. diterima oleh Yang bersangkutan." },
      { "date": "18/08/2026 06:46", "description": "Pesanan dalam proses pengantaran." }
    ]
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ",
    "as_of": "2026-08-20T13:00:00.000Z",
    "age_seconds": 42,
    "next_update_at": "2026-08-20T13:05:00.000Z"
  }
}
```

## Courier Directory

Every courier the checkers cover — one code each, one list. The same token works as `courier` on both the waybill tracker and the tariff checker.

- Method: `GET`
- Path: `/v1/resi/courier`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `q` | string | optional | Filter by name or code, e.g. `jne` or `j&t`. |

**Example request**

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

**Example response**

```json
{
  "data": {
    "couriers": [
      { "code": "jne", "name": "JNE" },
      { "code": "jnt", "name": "J&T Express" },
      { "code": "spx", "name": "Shopee Express (SPX)" }
    ]
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ"
  }
}
```