Skip to content
GET /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.

Custom headers (optional)
api.oanor.com/astroport-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/astroport-api/v1/pool" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/astroport-api/v1/pool", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/astroport-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/astroport-api/v1/pool",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "dex": "Astroport",
        "pool": {
            "apr": 0.00022453,
            "assets": [
                {
                    "denom": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81",
                    "symbol": "USDC",
                    "price_usd": 0.999755
                },
                {
                    "denom": "factory/neutron1k6hr0f83e7un2wjf29cspk7j69jrnskk65k3ek2nj9dztrlzpj6q00rtsa/udatom",
                    "symbol": "dATOM",
                    "price_usd": 2.88229045
                }
            ],
            "chain_id": "neutron-1",
            "pool_type": "concentrated_duality_orderbook",
            "deregistered": false,
            "pool_address": "neutron1nfns3ck2ykrs0fknckrzd9728cyf77devuzernhwcwrdxw7ssk2s3tjf8r",
            "apr_breakdown": {
                "astro": 0,
                "external": 0,
                "pool_fees": 0.00022453
            },
            "day_volume_usd": 2997.45,
            "day_lp_fees_usd": 2.8663,
            "total_liquidity_usd": 4659310,
            "staked_liquidity_usd": 54342.2
        }
    },
    "meta": {
        "timestamp": "2026-06-15T02:09:59.852Z",
        "request_id": "3e29b0bc-cb34-4eba-a944-ad900fb19330"
    },
    "status": "ok",
    "message": "Pool retrieved successfully",
    "success": true
}