/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/rocketpool-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rocketpool-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rocketpool-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/rocketpool-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"source": "Rocket Pool API (api.rocketpool.net, live)",
"service": "rocketpool-api",
"endpoints": {
"GET /v1/rpl": "RPL token price (USD/ETH), total staked and supply.",
"GET /v1/meta": "This document.",
"GET /v1/reth": "rETH staking APR, beacon-chain APR and ETH price.",
"GET /v1/nodes": "Node-operator counts, timezones and commission.",
"GET /v1/network": "Protocol staking state — ETH staked, minipools, deposit pool, rETH collateral."
},
"description": "Live data from Rocket Pool, the leading decentralised Ethereum liquid-staking protocol, where a permissionless network of node operators run validators and users hold rETH (a reward-accruing token), via its public API. The network endpoint returns ETH staked through Rocket Pool, staking minipools, deposit-pool balance and rETH collateral, plus Ethereum-wide total staked and validator count; the reth endpoint returns rETH's staking APR, the beacon-chain APR and the ETH price; the rpl endpoint returns the RPL token price (USD and ETH), total staked and supply; the nodes endpoint returns node-operator counts and commission. Live, no key, nothing stored. Distinct from on-chain explorers, DEX/lending/perps feeds and price APIs — this is Rocket Pool's own liquid-staking, rETH-yield, RPL and node-operator layer.",
"reth_apr_pct": 2.0639,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-10T22:57:59.059Z",
"request_id": "36c09aa7-99dc-4a10-8bfe-1449a33576a7"
},
"status": "ok",
"message": "Meta",
"success": true
}