/v1/rpl
RPL token price (USD/ETH), total staked and supply
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/rocketpool-api/v1/rpl" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rocketpool-api/v1/rpl", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rocketpool-api/v1/rpl");
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/rpl",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"token": "RPL",
"source": "Rocket Pool",
"price_eth": 0.0008023677,
"price_usd": 1.300301,
"total_staked": 9291848.914601,
"total_supply": 22535094.653922,
"legacy_rpl_staked": 6890789.766336,
"megapool_rpl_staked": 2401059.148264,
"staked_pct_of_supply": 41.2328
},
"meta": {
"timestamp": "2026-06-10T22:57:58.814Z",
"request_id": "f8b86006-22ac-4fd5-b47a-8cf60613c3fb"
},
"status": "ok",
"message": "RPL data retrieved successfully",
"success": true
}