/v1/meta
Service metadata
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/pyth-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pyth-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pyth-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/pyth-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"source": "Pyth Hermes API (hermes.pyth.network, live)",
"service": "pyth-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/feeds": "Search the feed registry by symbol or asset type (query=BTC, asset_type=Crypto, limit=50).",
"GET /v1/price": "One feed's latest aggregate price with confidence, EMA and publish time (symbol=BTC/USD).",
"GET /v1/prices": "Many feeds at once (symbols=BTC/USD,ETH/USD,EUR/USD,XAU/USD)."
},
"feed_count": 3055,
"asset_types": [
"Crypto",
"Equity",
"FX",
"Commodities",
"Metal",
"Rates"
],
"description": "Live cross-asset prices from Pyth, the largest decentralised first-party oracle, which aggregates prices contributed by exchanges, market makers and trading firms and serves them across 90+ blockchains. Pyth covers far more than crypto: ~3,000 feeds spanning crypto, US and global equities, FX pairs, commodities and precious metals. The feeds endpoint searches the feed registry by symbol or asset type; the price endpoint returns one feed's latest aggregate price with its confidence interval, exponent, EMA price and publish time; the prices endpoint returns many feeds at once. Each price carries a confidence band — Pyth's signature measure of how tightly publishers agree. Live, no key, nothing stored. Distinct from single-DEX oracles and single-asset-class price feeds — this is Pyth's own multi-asset first-party oracle layer.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-10T22:57:09.998Z",
"request_id": "8eb45348-aa8b-4b74-8bd1-91e26f4f98b4"
},
"status": "ok",
"message": "Meta",
"success": true
}