GET
/
token
/
{chain}
/
{tokenAddress}
/
stats
curl --request GET \
  --url https://api-dex.chainstream.io/token/{chain}/{tokenAddress}/stats \
  --header 'Authorization: Bearer <token>'
[
  {
    "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "price1m": "1.234",
    "buys1m": "150",
    "sells1m": "120",
    "buyVolumes1m": "50000.45",
    "sellsVolumes1m": "45000.32",
    "volumes1m": "95000.77",
    "buyVolumesInUsd1m": "50000.45",
    "sellVolumesInUsd1m": "45000.32",
    "volumesInUsd1m": "95000.77",
    "buyers1m": "50",
    "sellers1m": "45",
    "openPriceInUsd1m": "1.255",
    "closePriceInUsd1m": "1.265",
    "priceChangeRatioInUsd1m": "0.01",
    "trades1m": "270",
    "traders1m": "270",
    "price5m": "1.245",
    "buys5m": "150",
    "sells5m": "120",
    "buyVolumes5m": "50000.45",
    "sellsVolumes5m": "45000.32",
    "volumes5m": "95000.77",
    "buyVolumesInUsd5m": "50000.45",
    "sellVolumesInUsd5m": "45000.32",
    "volumesInUsd5m": "95000.77",
    "buyers5m": "50",
    "sellers5m": "45",
    "openPriceInUsd5m": "1.255",
    "closePriceInUsd5m": "1.265",
    "priceChangeRatioInUsd5m": "0.01",
    "trades5m": "270",
    "traders5m": "270",
    "price15m": "1.255",
    "buys15m": "150",
    "sells15m": "120",
    "buyVolumes15m": "50000.45",
    "sellsVolumes15m": "45000.32",
    "volumes15m": "95000.77",
    "buyVolumesInUsd15m": "50000.45",
    "sellVolumesInUsd15m": "45000.32",
    "volumesInUsd15m": "95000.77",
    "buyers15m": "50",
    "sellers15m": "45",
    "openPriceInUsd15m": "1.255",
    "closePriceInUsd15m": "1.265",
    "priceChangeRatioInUsd15m": "0.01",
    "trades15m": "270",
    "traders15m": "270",
    "price30m": "1.265",
    "buys30m": "150",
    "sells30m": "120",
    "buyVolumes30m": "50000.45",
    "sellsVolumes30m": "45000.32",
    "volumes30m": "95000.77",
    "buyVolumesInUsd30m": "50000.45",
    "sellVolumesInUsd30m": "45000.32",
    "volumesInUsd30m": "95000.77",
    "buyers30m": "50",
    "sellers30m": "45",
    "openPriceInUsd30m": "1.255",
    "closePriceInUsd30m": "1.265",
    "priceChangeRatioInUsd30m": "0.01",
    "trades30m": "270",
    "traders30m": "270",
    "price1h": "1.275",
    "buys1h": "150",
    "sells1h": "120",
    "buyVolumes1h": "50000.45",
    "sellsVolumes1h": "45000.32",
    "volumes1h": "95000.77",
    "buyVolumesInUsd1h": "50000.45",
    "sellVolumesInUsd1h": "45000.32",
    "volumesInUsd1h": "95000.77",
    "buyers1h": "50",
    "sellers1h": "45",
    "openPriceInUsd1h": "1.255",
    "closePriceInUsd1h": "1.265",
    "priceChangeRatioInUsd1h": "0.01",
    "trades1h": "270",
    "traders1h": "270",
    "price4h": "1.285",
    "buys4h": "150",
    "sells4h": "120",
    "buyVolumes4h": "50000.45",
    "sellsVolumes4h": "45000.32",
    "volumes4h": "95000.77",
    "buyVolumesInUsd4h": "50000.45",
    "sellVolumesInUsd4h": "45000.32",
    "volumesInUsd4h": "95000.77",
    "buyers4h": "50",
    "sellers4h": "45",
    "openPriceInUsd4h": "1.255",
    "closePriceInUsd4h": "1.265",
    "priceChangeRatioInUsd4h": "0.01",
    "trades4h": "270",
    "traders4h": "270",
    "price24h": "1.295",
    "buys24h": "150",
    "sells24h": "120",
    "buyVolumes24h": "50000.45",
    "sellsVolumes24h": "45000.32",
    "volumes24h": "95000.77",
    "buyVolumesInUsd24h": "50000.45",
    "sellVolumesInUsd24h": "45000.32",
    "volumesInUsd24h": "95000.77",
    "buyers24h": "50",
    "sellers24h": "45",
    "openPriceInUsd24h": "1.255",
    "closePriceInUsd24h": "1.265",
    "priceChangeRatioInUsd24h": "0.01",
    "trades24h": "270",
    "traders24h": "270"
  }
]

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
tokenAddress
string
required

代币地址

Example:

"6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"

Response

200 - application/json

The response is of type object[].