GET
/
v1
/
dexpools
/
{chain}
/
{poolAddress}
DEX 资金池 - 详情
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

支持网络中列出的区块链名称

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

资金池地址

Example:

"58oQChx4yWmvKdwLLZzBi4ChoCc2fqCUWBkwMihLYQo2"

Response

200 - application/json
chain
string
required

区块链

Example:

"sol"

poolAddress
string
required

资金池地址

Example:

"58oQChx4yWmvKdwLLZzBi4ChoCc2fqCUWBkwMihLYQo2"

tokenAAddress
string
required

资金池中的第一个代币

Example:

"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"

tokenBAddress
string
required

资金池中的第二个代币

Example:

"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB"

programAddress
string

DEX 程序地址

Example:

"whirLbMiicVdio4qvUfM5KAg6Ct8VwpYzGff3uctyCc"

protocolFamily
string

DEX协议族

Example:

"OrcaWhirpool"

image
string

DEX标志图片URL

Example:

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

protocolName
string

DEX协议名称

Example:

"OrcaWhirpool AMM V2"

tvlInUsd
string

总流动性价值(单位:USD)

Example:

"1000000.45"

tvlInSol
string

总流动性价值(单位:SOL)

Example:

"1000000.45"