v1

latestOpenAPI 3.0.42026-07-26432241.7 KB
Pools

Get daily volume and liquidity for a pool by id

get/pools/daily/{poolId}

Path parameters

poolIdinteger required
Example:1

Saucerswap pool id

Headers

x-api-keystring required

API key for authentication. The demo api key provided is globally rate limited. Do not use in production.

Response

Successful response

poolIdinteger required

Pool id

timestampSecondsinteger required

Timestamp in unix seconds

liquiditystring required

Pool liquidity in its smallest unit

volumestring required

Pool volume in its smallest unit

Example response

[
  {
    "poolId": 502,
    "timestampSeconds": 1697760000,
    "liquidity": "1268297620467",
    "volume": "178297285042"
  }
]