/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/mantle-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mantle-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mantle-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/mantle-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"name": "Mantle Network API",
"source": "Mantle public JSON-RPC (rpc.mantle.xyz)",
"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": "MNT balance and nonce for an address (?address=0x…)"
},
{
"path": "/v1/meta",
"description": "This metadata document"
}
],
"disclaimer": "Unofficial proxy of the public Mantle JSON-RPC. Not affiliated with Mantle. Data only; no guarantees of accuracy or availability.",
"description": "On-chain data for Mantle (chain-id 5000), a modular EVM Layer 2 with the MNT native gas token. Exposes chain status, blocks, current gas prices and account balances via the public JSON-RPC.",
"native_token": {
"symbol": "MNT",
"decimals": 18
}
},
"meta": {
"timestamp": "2026-06-15T11:14:51.558Z",
"request_id": "ee129b9f-2fc2-4e18-8bbc-5b42800edd55"
},
"status": "ok",
"message": "Meta",
"success": true
}