# Biconomy Exchange API
> Live spot market data from Biconomy, 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, 24h high/low, 24h change and base/quote volume; rank every spot market for a quote currency (USDT, BTC, ETH…) by 24h turnover; list the tradable pairs with their base, quote and precision; or pull live order-book depth with the real best bid/ask and running spread. Markets are addressed as BTC_USDT, with base and quote either side of the underscore. This is the Biconomy 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/biconomy-api/..."
```

## Pricing
- **Free** (Free) — 23,000 calls/Mo, 3 req/s
- **Starter** ($8/Mo) — 310,000 calls/Mo, 10 req/s
- **Growth** ($24/Mo) — 1,320,000 calls/Mo, 25 req/s
- **Scale** ($57/Mo) — 4,650,000 calls/Mo, 50 req/s

## Endpoints

### Ticker

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

**Parameters:**
- `market` (query, optional, string) — Market as BTC_USDT Example: `BTC_USDT`
- `base` (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/biconomy-api/v1/ticker?market=BTC_USDT&base=ETH&quote=USDT"
```

**Response:**
```json
{
    "data": {
        "base": "BTC",
        "last": 62730.55,
        "note": "bid/ask via /v1/book (Biconomy ticker buy/sell are unreliable)",
        "quote": "USDT",
        "market": "BTC_USDT",
        "source": "Biconomy",
        "low_24h": 60783.36,
        "high_24h": 62995.99,
        "change_24h_pct": 1.66,
        "base_volume_24h": 9331.82331,
        "quote_volume_24h": 577844521.52
    },
    "meta": {
        "timestamp": "2026-06-11T07:48:44.110Z",
        "request_id": "b5f1bc80-7c1a-49ae-9c3c-c4f85afb3250"
    },
    "status": "ok",
    "message": "Ticker retrieved successfully",
    "success": true
}
```

### Tickers

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

**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/biconomy-api/v1/tickers?quote=USDT&limit=50"
```

**Response:**
```json
{
    "data": {
        "count": 50,
        "quote": "USDT",
        "source": "Biconomy",
        "tickers": [
            {
                "base": "ELON",
                "last": 0.56565,
                "quote": "USDT",
                "market": "ELON_USDT",
                "low_24h": 3.159e-8,
                "high_24h": 0.793,
                "change_24h_pct": 1696101849.03,
                "base_volume_24h": 407041375699.4,
                "quote_volume_24h": 31118443444
            },
            {
                "base": "BTC",
                "last": 62730.55,
                "quote": "USDT",
                "market": "BTC_USDT",
                "low_24h": 60783.36,
                "high_24h": 62995.99,
                "change_24h_pct": 1.66,
                "base_volume_24h": 9331.82331,
                "quote_volume_24h": 577844521.52
            },
            {
                "base": "ETH",
                "last": 1654.57,
                "quote": "USDT",
                "market": "ETH_USDT",
                "low_24h": 1604.62,
                "high_24h": 1667.93,
                "change_24h_pct": 0.95,
                "base_volume_24h": 160275.3571,
                "quote_volume_24h": 262308233.25
            },
            {
                "base": "SOL",
                "last": 64.99,
                "quote": "USDT",
                "market": "SOL_USDT",
                "low_24h": 62.36,
                "high_24h": 65.76,
                "change_24h_pct": 0
…(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/biconomy-api/v1/markets?quote=USDT"
```

**Response:**
```json
{
    "data": {
        "count": 773,
        "quote": "USDT",
        "source": "Biconomy",
        "markets": [
            {
                "base": "$UPT",
                "quote": "USDT",
                "market": "$UPT_USDT",
                "status": "trading",
                "min_quantity": 5,
                "base_precision": 2,
                "quote_precision": 4
            },
            {
                "base": "0G",
                "quote": "USDT",
                "market": "0G_USDT",
                "status": "trading",
                "min_quantity": 5,
                "base_precision": 2,
                "quote_precision": 3
            },
            {
                "base": "1INCH",
                "quote": "USDT",
                "market": "1INCH_USDT",
                "status": "trading",
                "min_quantity": 0.1,
                "base_precision": 3,
                "quote_precision": 4
            },
            {
                "base": "2Z",
                "quote": "USDT",
                "market": "2Z_USDT",
                "status": "trading",
                "min_quantity": 5,
                "base_precision": 3,
                "quote_precision": 4
            },
            {
                "base": "4",
                "quote": "USDT",
                "market": "4_USDT",
                "status": "trading",
                "min_quantity": 5,
                "base_precision": 2,
                "quote_precision": 5
            },
 
…(truncated, see openapi.json for full schema)
```

### Book

#### `GET /v1/book` — Live order-book depth with real best bid/ask

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

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

**Response:**
```json
{
    "data": {
        "asks": [
            {
                "price": 62722.61,
                "amount": 0.95616
            },
            {
                "price": 62722.62,
                "amount": 1.15476
            },
            {
                "price": 62722.63,
                "amount": 1.17338
            },
            {
                "price": 62722.64,
                "amount": 1.22683
            },
            {
                "price": 62722.65,
                "amount": 0.12185
            },
            {
                "price": 62722.66,
                "amount": 0.02618
            },
            {
                "price": 62722.67,
                "amount": 0.09407
            },
            {
                "price": 62722.68,
                "amount": 0.14137
            },
            {
                "price": 62722.69,
                "amount": 0.12572
            },
            {
                "price": 62722.7,
                "amount": 0.04977
            },
            {
                "price": 62722.71,
                "amount": 0.10319
            },
            {
                "price": 62722.72,
                "amount": 0.14588
            },
            {
                "price": 62722.73,
                "amount": 0.08432
            },
            {
                "price": 62722.74,
                "amount": 0.15803
            },
            {
                "price": 62722.75,
                "amount": 0.14933
            
…(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/biconomy-api/v1/meta"
```

**Response:**
```json
{
    "data": {
        "note": "Pass markets as BTC_USDT (base and quote separated by '_'). Best bid/ask come from /v1/book; quote_volume_24h is the 24h turnover in the quote currency; change_24h_pct is the 24h percentage move.",
        "source": "Biconomy public API (www.biconomy.com/api/v1, live)",
        "service": "biconomy-api",
        "endpoints": {
            "GET /v1/book": "Live order-book depth — real best bid/ask and spread (market=BTC_USDT, limit=20).",
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "Ticker for one market — last, 24h high/low, change, volume (market=BTC_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 turnover (quote=USDT, limit=50)."
        },
        "description": "Live spot market data from Biconomy, a global crypto exchange. The ticker endpoint returns a market's last price, 24h high/low, 24h change and base/quote volume; the tickers endpoint ranks every spot market for a quote currency by 24h turnover; the markets endpoint lists tradable pairs with base/quote and precision; the book endpoint returns live order-book depth with the real best bid/ask and spread. Live, no key, nothing stored. A distinct global venue, separate from other exchange feeds.",
        "market_count": 1432,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T07:4
…(truncated, see openapi.json for full schema)
```


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