Skip to content
Documentation
Pool

Pools

Get Pool Informations

Return the data from a certain pool.

https://misti.up.railway.app/api/pool
   ?chainid=1
   &address=0xff2bdf3044c601679dede16f5d4a460b35cebfee
   &apikey=YourApiKeyToken
  • Try this endpoint in your browser 🔗.

Query Parameters:
ParameterDescription
chainidThe chain ID of the blockchain (e.g., 1 for Ethereum mainnet). Table chain id
addressThe string representing the contract address of the pool.
apikeyYour API key.

Response:

The response will be a JSON object containing the pool's informations.

{
    "chain_id": 1,
    "pool_address": "0xff2bdf3044c601679dede16f5d4a460b35cebfee",
    "token0": "0x0cec1a9154ff802e7934fc916ed7ca50bde6844e",
    "token1": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
    "fee_tier": 3000,
    "initial_tick": -53229,
    "initial_sqrt_price_x96": 5.53457559459772e+27,
    "swap_count": 23430,
    "created_at_timestamp": "2021-05-04T23:02:17+02:00",
    "created_at_block_number": 12370088
}

Get Pool Trades Volume

coming soon...