/v1/gas
Current gas price (wei + gwei)
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/moonriver-api/v1/gas" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/moonriver-api/v1/gas", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/moonriver-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/moonriver-api/v1/gas",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"at_block": 16679483,
"gas_price_wei": "312500000",
"native_symbol": "MOVR",
"gas_price_gwei": 0.3125
},
"meta": {
"timestamp": "2026-06-15T20:41:09.671Z",
"request_id": "6fb4b3e5-250e-45d8-9522-3f6627bae61b"
},
"status": "ok",
"message": "Gas price retrieved successfully",
"success": true
}