/v1/pool
Full detail for one pool
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/maya-api/v1/pool" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/maya-api/v1/pool", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/maya-api/v1/pool");
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/maya-api/v1/pool",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"pool": {
"asset": "BTC.BTC",
"status": "available",
"pool_apy": 0.141137,
"price_usd": 65634.81769587,
"savers_apr": 0,
"volume_24h": 1646179145.452221,
"asset_depth": 29.97238417,
"cacao_depth": 1735149941.365439,
"native_decimal": 8,
"price_in_cacao": 578916.22218769,
"annual_pct_rate": 0.141137
},
"network": "MAYAChain"
},
"meta": {
"timestamp": "2026-06-15T02:10:03.371Z",
"request_id": "1e0d633c-ba38-4013-9a04-f385fc3b154b"
},
"status": "ok",
"message": "Pool retrieved successfully",
"success": true
}