GET
/
v1
/
dexpools
/
{chain}
/
{poolAddress}
DexPool - Detail
curl --request GET \
  --url https://api-dex.chainstream.io/v1/dexpools/{chain}/{poolAddress} \
  --header 'Authorization: Bearer <token>'
{
  "programAddress": "whirLbMiicVdio4qvUfM5KAg6Ct8VwpYzGff3uctyCc",
  "protocolFamily": "OrcaWhirpool",
  "image": "https://ipfs.io/ipfs/bafkreid7667676767676767676767676767676767676767676767676767676767676767",
  "chain": "sol",
  "poolAddress": "58oQChx4yWmvKdwLLZzBi4ChoCc2fqCUWBkwMihLYQo2",
  "protocolName": "OrcaWhirpool AMM V2",
  "tokenAAddress": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
  "tokenBAddress": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
  "tvlInUsd": "1000000.45",
  "tvlInSol": "1000000.45"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

chain
enum<string>
required

A chain name listed in supported networks

Available options:
sol,
base,
bsc,
polygon,
arbitrum,
optimism,
avalanche,
ethereum,
zksync,
sui
poolAddress
string
required

A pool address

Example:

"58oQChx4yWmvKdwLLZzBi4ChoCc2fqCUWBkwMihLYQo2"

Response

200 - application/json
chain
string
required

Blockchain

Example:

"sol"

poolAddress
string
required

Pool address

Example:

"58oQChx4yWmvKdwLLZzBi4ChoCc2fqCUWBkwMihLYQo2"

tokenAAddress
string
required

First token in the pool

Example:

"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"

tokenBAddress
string
required

Second token in the pool

Example:

"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB"

programAddress
string

DEX program address

Example:

"whirLbMiicVdio4qvUfM5KAg6Ct8VwpYzGff3uctyCc"

protocolFamily
string

DEX protocol family

Example:

"OrcaWhirpool"

image
string

DEX logo image URL

Example:

"https://ipfs.io/ipfs/bafkreid7667676767676767676767676767676767676767676767676767676767676767"

protocolName
string

DEX protocol name

Example:

"OrcaWhirpool AMM V2"

tvlInUsd
string

Total value locked in USD

Example:

"1000000.45"

tvlInSol
string

TVL in SOL

Example:

"1000000.45"