/v1/first
The token first-ever recorded price
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/tokenpricehistory-api/v1/first" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tokenpricehistory-api/v1/first", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tokenpricehistory-api/v1/first");
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/tokenpricehistory-api/v1/first",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"coin": "ethereum:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
"note": "The token's first-ever recorded USD price (when DeFiLlama began tracking it).",
"source": "DeFiLlama",
"symbol": "WETH",
"first_price": 839.535,
"first_timestamp": 1518566400
},
"meta": {
"timestamp": "2026-06-14T08:04:21.556Z",
"request_id": "83a3adcc-e257-4d24-afd8-1e587ece88a0"
},
"status": "ok",
"message": "First price retrieved successfully",
"success": true
}