Naar de inhoud
GET /v1/feeds

Search the feed registry

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/pyth-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 13,
        "feeds": [
            {
                "id": "8f257aab6e7698bb92b15511915e593d6f8eae914452f781874754b03d0c612b",
                "base": "LBTC",
                "quote": "USD",
                "symbol": "LBTC/USD",
                "asset_type": "Crypto",
                "full_symbol": "Crypto.LBTC/USD"
            },
            {
                "id": "6665073f5bc307b97e68654ff11f3d8875abd6181855814d23ab01b8085c0906",
                "base": "MBTC",
                "quote": "USD",
                "symbol": "MBTC/USD",
                "asset_type": "Crypto",
                "full_symbol": "Crypto.MBTC/USD"
            },
            {
                "id": "e62df6c8b4a85fe1a67db44dc12de5db330f7ac66b72dc658afedf0f4a415b43",
                "base": "BTC",
                "quote": "USD",
                "symbol": "BTC/USD",
                "asset_type": "Crypto",
                "full_symbol": "Crypto.BTC/USD"
            },
            {
                "id": "be3dd0cf4a168f82e4912952b24420211ad52641b7365d49866d59e20c948288",
                "base": "EBTC",
                "quote": "USD",
                "symbol": "EBTC/USD",
                "asset_type": "Crypto",
                "full_symbol": "Crypto.EBTC/USD"
            },
            {
                "id": "c96458d393fe9deb7a7d63a0ac41e2898a67a7750dbd166673279e06c868df0a",
                "base": "ETH",
                "quote": "BTC",
                "symbol": "ETH/BTC",
                "asset_type": "Crypto",
                "full_symbol": "Crypto.ETH/BTC"
            },
            {
                "id": "2817d7bfe5c64b8ea956e9a26f573ef64e72e4d7891f2d6af9bcc93f7aff9a97",
                "base": "CBBTC",
                "quote": "USD",
                "symbol": "CBBTC/USD",
                "asset_type": "Crypto",
                "full_symbol": "Crypto.CBBTC/USD"
            },
            {
                "id": "c9d8b075a5c69303365ae23633d4e085199bf5c520a3b90fed1322a0342ffc33",
                "base": "WBTC",
                "quote": "USD",
                "symbol": "WBTC/USD",
                "asset_type": "Crypto",
                "full_symbol": "Crypto.WBTC/USD"
            },
            {
                "id": "42bfb26778f3504a9f359a92c731f77d0c24aed9b7745276e3ad0c2d840b74c2",
                "base": "UBTC",
                "quote": "USD",
                "symbol": "UBTC/USD",
                "asset_type": "Crypto",
                "full_symbol": "Crypto.UBTC/USD"
            },
            {
                "id": "56a3121958b01f99fdc4e1fd01e81050602c7ace3a571918bb55c6a96657cca9",
                "base": "TBTC",
                "quote": "USD",
                "symbol": "TBTC/USD",
                "asset_type": "Crypto",
                "full_symbol": "Crypto.TBTC/USD"
            },
            {
                "id": "f253cf87dc7d5ed5aa14cba5a6e79aee8bcfaef885a0e1b807035a0bbecc36fa",
                "base": "SOLVBTC",
                "q
…