Token Data

Get token data returns real-time or historical token information.

Get Token Data

GET https://api.abyiss.com/v1/dex/{exchange}/{blockchain}/token/{token}

Returns an object of real-time or historical token data on the decentralized exchange.

Path Parameters

NameTypeDescription

exchange*

string

Decentralized exchange Id

blockchain*

string

Blockchain for Decentralized exchange

token*

string

Token contract address.

Query Parameters

NameTypeDescription

apiKey*

string

Your Abyiss API Key

block

int

The blockchain block number for historical data.

{
    "id": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
    "name": "Wrapped Ether",
    "symbol": "WETH",
    "decimals": "18",
    "supply": "19848",
    "totalValueLocked": "631142.087037589087808909",
    "totalValueLockedUSD": "1175058789.34375407186171784308728",
    "volume": "344086745.20009839797422871",
    "volumeUSD": "753749160247.6554862800162826515373",
    "untrackedVolumeUSD": "418002367585531.1947936090378553175",
    "txCount": "24827115",
    "derivedETH": "1",
    "feesUSD": "1205919785.200171873113778800523199",
    "totalValueLockedUSDUntracked": "0",
    "poolCount": "0"
}

Copy & Paste Code

curl -H "apiKey: API KEY" https://api.abyiss.com/v1/dex/uniswap/ethereum/token/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2

Response Object

Example URL: https://api.abyiss.com/v1/dex/uniswap/ethereum/token/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2?apiKey=

{
    "id": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
    "name": "Wrapped Ether",
    "symbol": "WETH",
    "decimals": "18",
    "supply": "19848",
    "totalValueLocked": "631142.087037589087808909",
    "totalValueLockedUSD": "1175058789.34375407186171784308728",
    "volume": "344086745.20009839797422871",
    "volumeUSD": "753749160247.6554862800162826515373",
    "untrackedVolumeUSD": "418002367585531.1947936090378553175",
    "txCount": "24827115",
    "derivedETH": "1",
    "feesUSD": "1205919785.200171873113778800523199",
    "totalValueLockedUSDUntracked": "0",
    "poolCount": "0"
}

Response Attributes

Attribute NameData TypeDescription

id

string

Token contract address

name

string

Token name

symbol

string

Token symbol

tokenDecmials

string

Token decimals

totalSupply

string

Token total supply

tokenTotalValueLocked

string

Liquidity across all pools in token units

tokenTotalValueLockedUSD

string

Liquidity across all pools in derived USD

tokenVolume

string

Volume in token units

tokenVolumeUSD

string

Volume in derived USD

tokenUntrackedVolumeUSD

string

Volume in USD even on pools with less reliable USD values

tokenTxCount

string

Transactions across all pools that include this token

tokenDerivedETH

string

Derived price in ETH

tokenFeesUSD

string

Fees in USD

totalValueLockedUSDUntracked

string

TVL derived in USD untracked

poolCount

string

Number of pools containing this token

Last updated