# Crypto Rupiah Tickers

Every listed crypto-to-rupiah and crypto-to-USDT pair — last, high, low, bid, ask, and both volumes — from Indonesia's rupiah crypto exchange.

- Method: `GET`
- Path: `/v1/crypto/tickers`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `max_age` | integer (seconds) | optional | Ask for data no older than this. Clamped to the product's own floor, so it can narrow the window but never force a refresh on every call. |
| `limit` | integer | optional | Return only the first N pairs, alphabetically. |

**Example request**

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

**Example response**

```json
{
  "data": {
    "server_time": "2026-08-19T16:14:11Z",
    "tickers": [
      { "pair": "btc_idr", "base": "btc", "quote": "idr", "last": 1212018000, "high": 1223333000, "low": 1142000000, "buy": 1212019000, "sell": 1212086000, "volume_base": 30.97978115, "volume_quote": 36567140394 },
      { "pair": "eth_idr", "base": "eth", "quote": "idr", "last": 36889000, "high": 37200000, "low": 33936000, "buy": 36890000, "sell": 36999000, "volume_base": 482.9, "volume_quote": 17818980850 }
    ]
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ",
    "as_of": "2026-08-19T16:14:11Z",
    "age_seconds": 8,
    "next_update_at": "2026-08-19T16:14:56Z"
  }
}
```