Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/rocketpool-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "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
}