Zum Inhalt springen
GET /v1/meta

Venue metadata & endpoint guide

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/pacifica-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "chain": "Solana",
        "venue": "Pacifica",
        "source": "Pacifica public REST (api.pacifica.fi/api/v1), keyless",
        "examples": {
            "book": "/v1/book?symbol=SOL",
            "prices": "/v1/prices?symbol=BTC",
            "trades": "/v1/trades?symbol=BTC&limit=10",
            "markets": "/v1/markets"
        },
        "endpoints": {
            "/v1/book": "live order book for a symbol (symbol=BTC)",
            "/v1/prices": "all-market price feed: mark/mid/oracle price, funding, open interest, 24h volume (symbol optional)",
            "/v1/trades": "recent public trades (symbol, limit)",
            "/v1/markets": "list every perpetual market with contract specs"
        },
        "instrument": "perpetual futures",
        "cache_ttl_ms": 5000
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:56.316Z",
        "request_id": "8514e658-f7e4-4828-a1a4-09088b0b1745"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}