/v1/meta
Service metadata
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/fraxtal-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fraxtal-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fraxtal-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"name": "Fraxtal Network API",
"source": "Fraxtal public JSON-RPC (rpc.frax.com)",
"endpoints": [
{
"path": "/v1/status",
"description": "Chain id, latest block number, gas price, client version, sync state"
},
{
"path": "/v1/block",
"description": "Block by number (?number=; omit for latest)"
},
{
"path": "/v1/gas",
"description": "Current gas price and max priority fee (wei + gwei)"
},
{
"path": "/v1/balance",
"description": "frxETH balance and nonce for an address (?address=0x…)"
},
{
"path": "/v1/meta",
"description": "This metadata document"
}
],
"disclaimer": "Unofficial proxy of the public Fraxtal JSON-RPC. Not affiliated with Frax Finance. Data only; no guarantees of accuracy or availability.",
"description": "On-chain data for Fraxtal (chain-id 252), an Optimistic-rollup EVM Layer 2 from Frax Finance that uses frxETH (Frax Ether) for gas. Exposes chain status, blocks, current gas prices and account balances via the public JSON-RPC.",
"native_token": {
"symbol": "frxETH",
"decimals": 18
}
},
"meta": {
"timestamp": "2026-06-15T11:14:54.230Z",
"request_id": "a4dd929d-fe57-4fb2-a087-dffbe0c99679"
},
"status": "ok",
"message": "Meta",
"success": true
}