메인 콘텐츠로 건너뛰기
GET
/
v2
/
dexpools
/
{chain}
/
{poolAddress}
DEX 풀 - 상세
curl --request GET \
  --url https://api.chainstream.io/v2/dexpools/{chain}/{poolAddress} \
  --header 'Authorization: Bearer <token>'
{
  "chain": "sol",
  "createdBlockTimestamp": "2024-01-15T10:30:00.000Z",
  "feeRate": "0.003",
  "image": "https://ipfs.io/ipfs/bafkreid7667676767676767676767676767676767676767676767676767676767676767",
  "liquidityModel": 1,
  "poolAddress": "58oQChx4yWmvKdwLLZzBi4ChoCc2fqCUWBkwMihLYQo2",
  "programAddress": "whirLbMiicVdio4qvUfM5KAg6Ct8VwpYzGff3uctyCc",
  "protocolFamily": "OrcaWhirpool",
  "protocolName": "OrcaWhirpool AMM V2",
  "tickSpacing": 64,
  "tokenAAddress": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
  "tokenALiquidity": {
    "amountInNative": "5000.123",
    "amountInUsd": "1000000.45",
    "decimals": 6,
    "priceNative": "0.005",
    "priceUsd": "1.0001",
    "tokenAddress": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "vaultAmount": "1000000000000"
  },
  "tokenBAddress": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
  "tokenBLiquidity": {
    "amountInNative": "5000.123",
    "amountInUsd": "1000000.45",
    "decimals": 6,
    "priceNative": "0.005",
    "priceUsd": "1.0001",
    "tokenAddress": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "vaultAmount": "1000000000000"
  },
  "tokenCount": 2,
  "tvlInSol": "1000000.45",
  "tvlInUsd": "1000000.45",
  "type": 1,
  "version": 2
}

인증

Authorization
string
header
필수

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

경로 매개변수

chain
enum<string>
필수

지원되는 네트워크에 나열된 체인 이름 Supported blockchain chains

사용 가능한 옵션:
sol,
eth,
bsc
poolAddress
string
필수

풀 주소

응답

200 - application/json

성공 응답

DEX pool detail

chain
string
필수

Chain identifier

poolAddress
string
필수

Pool address

tokenAAddress
string
필수

Token A address

tokenBAddress
string
필수

Token B address

createdBlockTimestamp
string | null

Creation block timestamp

feeRate
string | null

Fee rate

image
string | null

Image URL

liquidityModel
integer<int32> | null

Liquidity model

필수 범위: x >= 0
programAddress
string | null

DEX program address

protocolFamily
string | null

Protocol family

protocolName
string | null

Protocol name

tickSpacing
integer<int64> | null

Tick spacing

tokenALiquidity
object

Token A liquidity

tokenBLiquidity
object

Token B liquidity

tokenCount
integer<int32> | null

Token count

tvlInSol
string | null

TVL in native token

tvlInUsd
string | null

TVL in USD

type
integer<int32> | null

Pool type

필수 범위: x >= 0
version
integer<int32> | null

Pool version

필수 범위: x >= 0