/v1/meta
Venue metadata & endpoint guide
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}