Skip to main content
GET
/
pools
/
{address}
Get Pool
curl --request GET \
  --url https://api.hadron.fi/pools/{address}
{
  "address": "7ZRLTJBvJSy9VDyZmDoGW4b7noorCYnLUisyAXh7hxMz",
  "name": "SOL/USDC",
  "token_x": {
    "address": "So11111111111111111111111111111111111111112",
    "symbol": "SOL",
    "name": "SOL",
    "decimals": 9,
    "icon": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png"
  },
  "token_y": {
    "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "symbol": "USDC",
    "name": "USDC",
    "decimals": 6,
    "icon": ""
  },
  "token_x_amount": 5413038034,
  "token_y_amount": 515256215,
  "pool_config": {
    "authority": "Bk2qYNMa4hUkbutBcb4JHhMqAbGEFZq4KjicpMCwC2wn",
    "quoting_authority": "Bk2qYNMa4hUkbutBcb4JHhMqAbGEFZq4KjicpMCwC2wn",
    "oracle_mode": 0,
    "pool_state": "Initialized",
    "base_spread_bps": 5.0
  },
  "tvl": 990.81,
  "current_price": 87.85,
  "volume": { "24h": 364.16 },
  "fees": { "24h": 0.59 }
}

Path Parameters

address
string
required
The pool config PDA address.

Query Parameters

cluster
string
default:"mainnet-beta"
Solana cluster — mainnet-beta or devnet.

Response

Returns the same pool object shape as the List Pools endpoint.
{
  "address": "7ZRLTJBvJSy9VDyZmDoGW4b7noorCYnLUisyAXh7hxMz",
  "name": "SOL/USDC",
  "token_x": {
    "address": "So11111111111111111111111111111111111111112",
    "symbol": "SOL",
    "name": "SOL",
    "decimals": 9,
    "icon": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png"
  },
  "token_y": {
    "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "symbol": "USDC",
    "name": "USDC",
    "decimals": 6,
    "icon": ""
  },
  "token_x_amount": 5413038034,
  "token_y_amount": 515256215,
  "pool_config": {
    "authority": "Bk2qYNMa4hUkbutBcb4JHhMqAbGEFZq4KjicpMCwC2wn",
    "quoting_authority": "Bk2qYNMa4hUkbutBcb4JHhMqAbGEFZq4KjicpMCwC2wn",
    "oracle_mode": 0,
    "pool_state": "Initialized",
    "base_spread_bps": 5.0
  },
  "tvl": 990.81,
  "current_price": 87.85,
  "volume": { "24h": 364.16 },
  "fees": { "24h": 0.59 }
}

Errors

StatusMessage
404Pool not found