# Toobit Exchange API
> Live spot market data from Toobit, a global crypto exchange, served straight from its public order books — no key on the data, nothing cached, nothing stored. Look up any market for its last price, best bid/ask and spread, 24h high/low, 24h change and base/quote volume; rank every spot market for a quote currency (USDT, BTC, ETH…) by 24h quote volume; list the tradable pairs with their base/quote and price precision; or pull live order-book depth with the running spread. Markets are addressed either concatenated (BTCUSDT) or as BTC_USDT, with base and quote resolved from Toobit's own exchange info. This is the Toobit venue specifically — a distinct global exchange feed, separate from the other exchange APIs in the catalogue, so cross-venue arbitrage and price-discovery workflows can read each book on its own terms.

## Authentication
All requests require your oanor API key in the `x-oanor-key` header. Get one at https://www.oanor.com/developer/keys.

```bash
curl -H "x-oanor-key: oanor_live_…" "https://api.oanor.com/toobit-api/..."
```

## Pricing
- **Free** (Free) — 20,000 calls/Mo, 3 req/s
- **Starter** ($9/Mo) — 280,000 calls/Mo, 10 req/s
- **Growth** ($26/Mo) — 1,250,000 calls/Mo, 25 req/s
- **Scale** ($60/Mo) — 4,500,000 calls/Mo, 50 req/s

## Endpoints

### Ticker

#### `GET /v1/ticker` — Ticker for one market

**Parameters:**
- `market` (query, optional, string) — Market as BTC_USDT or BTCUSDT Example: `BTC_USDT`
- `symbol` (query, optional, string) — Base asset (with quote=) Example: `ETH`
- `quote` (query, optional, string) — Quote asset Example: `USDT`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/toobit-api/v1/ticker?market=BTC_USDT&symbol=ETH&quote=USDT"
```

**Response:**
```json
{
    "data": {
        "ask": 62719.72,
        "bid": 62719.71,
        "base": "BTC",
        "last": 62719.71,
        "quote": "USDT",
        "market": "BTCUSDT",
        "source": "Toobit",
        "spread": 0.01,
        "low_24h": 60783.36,
        "high_24h": 62996,
        "open_24h": 61719.72,
        "change_24h": 999.99,
        "change_24h_pct": 1.62,
        "base_volume_24h": 6762.20782,
        "quote_volume_24h": 419186279.69
    },
    "meta": {
        "timestamp": "2026-06-11T07:48:50.967Z",
        "request_id": "db68a328-be52-4fe1-a86f-131e55fde32f"
    },
    "status": "ok",
    "message": "Ticker retrieved successfully",
    "success": true
}
```

### Tickers

#### `GET /v1/tickers` — All markets for a quote ranked by 24h quote volume

**Parameters:**
- `quote` (query, optional, string) — Quote asset Example: `USDT`
- `limit` (query, optional, string) — Max results (1-400) Example: `50`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/toobit-api/v1/tickers?quote=USDT&limit=50"
```

**Response:**
```json
{
    "data": {
        "count": 50,
        "quote": "USDT",
        "source": "Toobit",
        "tickers": [
            {
                "ask": null,
                "bid": null,
                "base": "BTC",
                "last": 62719.72,
                "quote": "USDT",
                "market": "BTCUSDT",
                "spread": null,
                "low_24h": 60783.36,
                "high_24h": 62996,
                "open_24h": 61719.72,
                "change_24h": 1000,
                "change_24h_pct": 1.62,
                "base_volume_24h": 6762.20864,
                "quote_volume_24h": 419186331.12
            },
            {
                "ask": null,
                "bid": null,
                "base": "ETH",
                "last": 1654.08,
                "quote": "USDT",
                "market": "ETHUSDT",
                "spread": null,
                "low_24h": 1604.62,
                "high_24h": 1667.54,
                "open_24h": 1640.09,
                "change_24h": 13.99,
                "change_24h_pct": 0.85,
                "base_volume_24h": 111019.9247,
                "quote_volume_24h": 181786172.64
            },
            {
                "ask": null,
                "bid": null,
                "base": "SOL",
                "last": 64.98,
                "quote": "USDT",
                "market": "SOLUSDT",
                "spread": null,
                "low_24h": 62.35,
                "high_24h": 65.79,
           
…(truncated, see openapi.json for full schema)
```

### Markets

#### `GET /v1/markets` — Tradable pairs with base/quote and precision

**Parameters:**
- `quote` (query, optional, string) — Filter by quote asset Example: `USDT`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/toobit-api/v1/markets?quote=USDT"
```

**Response:**
```json
{
    "data": {
        "count": 550,
        "quote": "USDT",
        "source": "Toobit",
        "markets": [
            {
                "base": "1INCH",
                "quote": "USDT",
                "market": "1INCHUSDT",
                "status": "TRADING",
                "base_precision": 0.1,
                "quote_precision": 1.0e-5
            },
            {
                "base": "2Z",
                "quote": "USDT",
                "market": "2ZUSDT",
                "status": "TRADING",
                "base_precision": 1,
                "quote_precision": 1.0e-5
            },
            {
                "base": "4",
                "quote": "USDT",
                "market": "4USDT",
                "status": "TRADING",
                "base_precision": 0.01,
                "quote_precision": 1.0e-8
            },
            {
                "base": "A8",
                "quote": "USDT",
                "market": "A8USDT",
                "status": "TRADING",
                "base_precision": 0.1,
                "quote_precision": 1.0e-7
            },
            {
                "base": "AAPLON",
                "quote": "USDT",
                "market": "AAPLONUSDT",
                "status": "TRADING",
                "base_precision": 0.001,
                "quote_precision": 1.0e-5
            },
            {
                "base": "AAVE",
                "quote": "USDT",
                "market": "AAVEUSDT",
                "status": "T
…(truncated, see openapi.json for full schema)
```

### Book

#### `GET /v1/book` — Live order-book depth with running spread

**Parameters:**
- `market` (query, optional, string) — Market as BTC_USDT Example: `ETH_USDT`
- `limit` (query, optional, string) — Depth per side (1-100) Example: `20`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/toobit-api/v1/book?market=ETH_USDT&limit=20"
```

**Response:**
```json
{
    "data": {
        "asks": [
            {
                "price": 1654.08,
                "amount": 98.1585
            },
            {
                "price": 1654.09,
                "amount": 0.3112
            },
            {
                "price": 1654.1,
                "amount": 0.0361
            },
            {
                "price": 1654.13,
                "amount": 2.8142
            },
            {
                "price": 1654.14,
                "amount": 5.4813
            },
            {
                "price": 1654.16,
                "amount": 37.5714
            },
            {
                "price": 1654.18,
                "amount": 6.6295
            },
            {
                "price": 1654.22,
                "amount": 3.597
            },
            {
                "price": 1654.23,
                "amount": 2.6601
            },
            {
                "price": 1654.24,
                "amount": 3.622
            },
            {
                "price": 1654.25,
                "amount": 57.0625
            },
            {
                "price": 1654.26,
                "amount": 3.037
            },
            {
                "price": 1654.27,
                "amount": 14.0972
            },
            {
                "price": 1654.29,
                "amount": 50.2413
            },
            {
                "price": 1654.3,
                "amount": 2.8615
            },
            {
            
…(truncated, see openapi.json for full schema)
```

### Meta

#### `GET /v1/meta` — Service metadata

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/toobit-api/v1/meta"
```

**Response:**
```json
{
    "data": {
        "note": "Pass markets as BTC_USDT or BTCUSDT. Symbols are concatenated; base/quote come from exchangeInfo. quote_volume_24h is in the quote currency.",
        "source": "Toobit API (api.toobit.com, live)",
        "service": "toobit-api",
        "endpoints": {
            "GET /v1/book": "Live order-book depth — best bid/ask and spread (market=BTC_USDT, limit=20).",
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "Ticker for one market (market=BTC_USDT or symbol=BTC&quote=USDT).",
            "GET /v1/markets": "Tradable pairs with base/quote and precision (quote=USDT optional).",
            "GET /v1/tickers": "All spot markets for a quote ranked by 24h quote volume (quote=USDT, limit=50)."
        },
        "description": "Live spot market data from Toobit, a global crypto exchange. The ticker endpoint returns a market's last price, best bid/ask, 24h high/low, 24h change and base/quote volume; the tickers endpoint ranks every spot market for a quote currency by 24h quote volume; the markets endpoint lists tradable pairs with base/quote and precision; the book endpoint returns live order-book depth. Live, no key, nothing stored. A distinct global venue, separate from other exchange feeds.",
        "market_count": 556,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T07:48:51.924Z",
        "request_id": "86024b6b-d74c-47e0-9445-6ba01fdb2e5d"
    },
    "status": "ok",
    "message"
…(truncated, see openapi.json for full schema)
```


---
Marketplace page: https://www.oanor.com/api/toobit-api
OpenAPI spec: https://www.oanor.com/api/toobit-api/openapi.json
