/v1/gas
Current gas price and max priority fee
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/fraxtal-api/v1/gas" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fraxtal-api/v1/gas", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fraxtal-api/v1/gas");
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/fraxtal-api/v1/gas",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"native_token": "frxETH",
"gas_price_wei": "1000254",
"gas_price_gwei": 0.001,
"max_priority_fee_wei": "1000000",
"max_priority_fee_gwei": 0.001
},
"meta": {
"timestamp": "2026-06-15T11:14:54.040Z",
"request_id": "bdb81904-0548-4df9-a008-52e5b6c83792"
},
"status": "ok",
"message": "Gas retrieved successfully",
"success": true
}