Pool Stats Multi
Retrieve the statistics of multiple liquidity pools in a single request.
Endpoint
GET /api/v1/partner/pool/stats-multiRequest Parameters
pool_addresses
string[]
Yes
The addresses of the liquidity pools. Can be provided as comma-separated.
Headers
x-api-key
No
API key for authorization.
cURL Example
curl --location 'https://api.noodles.fi/api/v1/partner/pool/stats-multi?pool_address=0xb0a595cb58d35e07b711ac145b4846c8ed39772c6d6f6716d89d71c64384543b,0x13c849c1d7793cded8affb7a3a0ee3fe63ccc99be1b581dd79151470af265690,0xe54c9e67ae9dbbd55c992235611ff1f5ac32161f799104820182f3ed5b40c413' \
--header 'x-api-key: YOUR_API_KEY'Response
Fields
code
number
No
HTTP status code (200 for success).
message
string
No
Status message.
data
array
No
Array of pool statistics objects.
Pool Statistics Object
pool_address
string
No
Pool address.
coin_a_type
string
No
Coin A type.
coin_b_type
string
No
Coin B type.
coin_a_symbol
string
No
Coin A symbol.
coin_b_symbol
string
No
Coin B symbol.
liquidity
string
No
Pool liquidity (big integer as string).
amount_a
float
No
Amount of coin A.
amount_b
float
No
Amount of coin B.
amount_a_usd
float
No
USD value of coin A.
amount_b_usd
float
No
USD value of coin B.
tvl_usd
float
No
Total value locked in USD.
volume_24h
float
No
24h trading volume.
volume_1w
float
No
1 week trading volume.
fee_24h
float
No
24h fee.
fee_1w
float
No
1 week fee.
fee_rate
float
No
Fee rate.
apr_24h
float
No
APR based on 24h fee.
apr_1w
float
No
APR based on 1 week fee.
Success Response
Response when no data is available
See also: Environment Setup
Last updated