Naar de inhoud
GET /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.

Aangepaste headers (optioneel)
api.oanor.com/berachain-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/berachain-api/v1/gas" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/berachain-api/v1/gas", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/berachain-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/berachain-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": "BERA",
        "gas_price_wei": "100047",
        "gas_price_gwei": 0.0001,
        "max_priority_fee_wei": "100000",
        "max_priority_fee_gwei": 0.0001
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:09.059Z",
        "request_id": "cafd35de-c2e9-47cf-b01f-303dd10c998d"
    },
    "status": "ok",
    "message": "Gas retrieved successfully",
    "success": true
}