Skip to content
GET /v1/meta

Service metadata and endpoint list

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/bitso-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/bitso-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitso-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitso-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/bitso-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "source": "Bitso API (api.bitso.com/v3, live)",
        "service": "bitso-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/books": "List trading pairs with fees and limits (quote=mxn optional).",
            "GET /v1/ticker": "Ticker for one book (book=btc_mxn or symbol=btc&quote=mxn).",
            "GET /v1/tickers": "All books ranked by approximate 24h quote volume (limit=50).",
            "GET /v1/orderbook": "Live market depth — top bids and asks (book=btc_mxn, limit=20)."
        },
        "book_count": 98,
        "description": "Live spot market data from Bitso, the largest regulated crypto exchange in Latin America (Mexico, Argentina, Brazil, Colombia). The ticker endpoint returns a book's last price, 24h high/low, best bid/ask, VWAP, volume and 24h change (in Mexican peso, Argentine peso, US dollar, Bitcoin and more); the tickers endpoint ranks every book by approximate 24h quote volume; the books endpoint lists trading pairs with min/max order size, tick size and maker/taker fees; the orderbook endpoint returns live market depth. Live, no key, nothing stored. A distinct Latin-American venue with local-fiat pricing, separate from other exchange feeds.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:26.651Z",
        "request_id": "1fbcd0e6-8494-469e-b8b0-fc6cc7a88050"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}