Get Pool Reserves

Fetch the Raydium pool reserves information for the pools user specified.

Request

Method:

GET ./api/v2/raydium/pool-reserves

Parameters:

ParameterTypeDescription

pairsOrAddresses

repeated string

A list of target Raydium Pool. Recommend using Pool program ID instead of token symbol.

Request example:

curl --header "Authorization: $AUTH_HEADER" \
'https://ny.solana.dex.blxrbdn.com/api/v2/raydium/pool-reserves' 

Response:

Fields:

FieldTypeDescription

pools

[] ProjectPool

See ProjectPool below for details.

ProjectPool

FieldTypeDescription

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:

{
    "pools":[
        {
            "pool":"APEX/USDC",
            "poolAddress":"43UHp4TuwQ7BYsaULN1qfpktmg7GWs9GpR8TDb8ovu9c",
            "token1Reserves":"496880722255475",
            "token1MintAddress":"51tMb3zBKDiQhNwGqpgwbavaGH54mk8fXFzxTc1xnasg",
            "token1MintSymbol":"APEX",
            "token2Reserves":"1688449661",
            "token2MintAddress":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
            "token2MintSymbol":"USDC"
        },
        {
            "pool":"RIN/USDC",
            "poolAddress":"7qZJTK5NatxQJRTxZvHi3gRu4cZZsKr8ZPzs7BA5JMTC",
            "token1Reserves":"39313457179666",
            "token1MintAddress":"E5ndSkaB17Dm7CsD22dvcjfrYSDLCxFcMd6z8ddCk5wp",
            "token1MintSymbol":"RIN",
            "token2Reserves":"12310387342",
            "token2MintAddress":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
            "token2MintSymbol":"USDC"
        },
        // ...
    ]
}

Last updated