Get Pool Reserves
Fetch the Raydium pool reserves information for the pools user specified.
Request
Method:
GET ./api/v2/raydium/pool-reserves
Parameters:
Parameter
Type
Description
pairsOrAddresses
repeated string
A list of target Raydium Pool. Recommend using Pool program ID instead of token symbol.
Request example:
Response:
Fields:
Field
Type
Description
pools
[] ProjectPool
See ProjectPool
below for details.
ProjectPool
Field
Type
Description
pool
string
The symbol of the pool.
poolAddress
string
The program address of the pool
token1MintAddress
string
The program address of token 1.
token1MintSymbol
string
The symbol of token 1.
token1Reserves
int64
The amount of the token 1 in its reserve.
token2MintAddress
string
The program address of token 2.
token2MintSymbol
string
The symbol of token 2.
token2Reserves
int64
The amount of the token 2 in its reserve.
Response Example:
Last updated