/v1/feeds
All Chainlink feeds with price + freshness
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/chainlink-api/v1/feeds" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/chainlink-api/v1/feeds", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/chainlink-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/chainlink-api/v1/feeds",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "Every tracked Chainlink price feed with its current on-chain answer, how many seconds ago it last updated and whether it is fresh. These are the exact prices DeFi lending, perp and stablecoin protocols read on-chain to value collateral and trigger liquidations — covering crypto, stablecoins and FX. Pass class=crypto|stablecoin|fx to filter. Live, cached ~60s.",
"count": 9,
"feeds": [
{
"pair": "AAVE/USD",
"fresh": true,
"price": 64.80386394,
"asset_class": "crypto",
"seconds_since_update": 2776
},
{
"pair": "AVAX/USD",
"fresh": true,
"price": 6.64507,
"asset_class": "crypto",
"seconds_since_update": 56320
},
{
"pair": "BNB/USD",
"fresh": true,
"price": 608.02788151,
"asset_class": "crypto",
"seconds_since_update": 18076
},
{
"pair": "BTC/USD",
"fresh": true,
"price": 63632.07,
"asset_class": "crypto",
"seconds_since_update": 1072
},
{
"pair": "ETH/USD",
"fresh": true,
"price": 1668.3307,
"asset_class": "crypto",
"seconds_since_update": 1216
},
{
"pair": "LINK/USD",
"fresh": true,
"price": 7.85626915,
"asset_class": "crypto",
"seconds_since_update": 1600
},
{
"pair": "MATIC/USD",
"fresh": true,
"price": 0.0735814,
"asset_class": "crypto",
"seconds_since_update": 13108
},
{
"pair": "SOL/USD",
"fresh": true,
"price": 67.988942,
"asset_class": "crypto",
"seconds_since_update": 16456
},
{
"pair": "UNI/USD",
"fresh": true,
"price": 2.52344453,
"asset_class": "crypto",
"seconds_since_update": 2740
}
],
"source": "Ethereum public JSON-RPC (Chainlink aggregators), keyless",
"classes": [
"crypto",
"stablecoin",
"fx"
],
"filtered_class": "crypto"
},
"meta": {
"timestamp": "2026-06-12T19:35:39.349Z",
"request_id": "f895b4df-a9d0-42f0-b5ed-dca27dd3a434"
},
"status": "ok",
"message": "Feeds retrieved successfully",
"success": true
}