Aller au contenu
GET /v1/meta

Service metadata and endpoint list

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/mercadobitcoin-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/mercadobitcoin-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mercadobitcoin-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mercadobitcoin-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/mercadobitcoin-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "note": "Pairs are BASE-QUOTE (e.g. BTC-BRL). The ticker endpoint accepts comma-separated pairs.",
        "source": "Mercado Bitcoin API (api.mercadobitcoin.net/api/v4, live)",
        "service": "mercadobitcoin-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "Ticker for one or more pairs (pair=BTC-BRL or symbol=BTC&quote=BRL; comma-separated allowed).",
            "GET /v1/symbols": "List trading pairs (quote=BRL optional).",
            "GET /v1/orderbook": "Live market depth — best bid/ask and spread (pair=BTC-BRL, limit=20)."
        },
        "description": "Live spot market data from Mercado Bitcoin, Brazil's largest and oldest crypto exchange. The ticker endpoint returns a pair's last price, buy/sell, 24h high/low, open and 24h change (in Brazilian real); the orderbook endpoint returns live market depth with best bid/ask and spread; the symbols endpoint lists 1,300+ trading pairs. Live, no key, nothing stored. A distinct Brazilian / Latin-American venue with real pricing, separate from other exchange feeds.",
        "symbol_count": 1331,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T07:49:32.455Z",
        "request_id": "bb0bf0bf-52c5-4cb7-a61f-fb295fcd0674"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}