Skip to content
GET /v1/community-pool

On-chain community pool (treasury)

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/neutron-api

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "note": "The Neutron on-chain community pool (treasury) — the native NTRN balance, the number of distinct assets held, and the ten largest holdings. No parameters.",
        "source": "Neutron (neutron-1) LCD",
        "top_assets": [
            {
                "denom": "untrn",
                "amount": 1068.5015
            },
            {
                "denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro",
                "amount": 342.0133
            },
            {
                "denom": "ibc/4A6A46D4263F2ED3DCE9CF866FE15E6903FB5E12D87EB8BDC1B6B1A1E2D397B4",
                "amount": 253.6473
            },
            {
                "denom": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81",
                "amount": 233.8632
            },
            {
                "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9",
                "amount": 187.5751
            },
            {
                "denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349",
                "amount": 83.1979
            },
            {
                "denom": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D",
                "amount": 36.6006
            },
            {
                "denom": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7",
                "amount": 33.2443
            },
            {
                "denom": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD",
                "amount": 26.799
            },
            {
                "denom": "factory/neutron1frc0p5czd9uaaymdkug2njz7dc7j65jxukp9apmt9260a8egujkspms2t2/udntrn",
                "amount": 12.5251
            }
        ],
        "native_ntrn": 0,
        "distinct_assets": 11
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:39.941Z",
        "request_id": "79a6eda1-c9ec-499a-bdee-5f8698ef303a"
    },
    "status": "ok",
    "message": "Community pool retrieved successfully",
    "success": true
}