/v1/feed
One feed's full detail by pair
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/chainlink-api/v1/feed" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/chainlink-api/v1/feed", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/chainlink-api/v1/feed");
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/feed",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "One Chainlink feed's on-chain detail: the current price (latestRoundData answer ÷ the feed's decimals), the round id, when it last updated (updated_at / seconds_since_update) and whether it is fresh. updatedAt is the on-chain heartbeat — Chainlink refreshes a feed on its heartbeat interval or on a price-deviation threshold; a long gap can mean a stale feed. Live, cached ~60s.",
"pair": "ETH/USD",
"fresh": true,
"price": 1668.3307,
"source": "Ethereum public JSON-RPC (Chainlink ETH/USD aggregator), keyless",
"contract": "0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419",
"decimals": 8,
"round_id": "129127208515966891635",
"updated_at": "2026-06-12T19:15:23.000Z",
"asset_class": "crypto",
"seconds_since_update": 1216
},
"meta": {
"timestamp": "2026-06-12T19:35:39.444Z",
"request_id": "34d21f48-054c-45cc-b069-8a0703e169ba"
},
"status": "ok",
"message": "Feed retrieved successfully",
"success": true
}