๐ชTokens
Endpoints and responses for all token data
Token Specific
Get Token
Path Parameters
Name
Type
Description
Query Parameters
Name
Type
Description
{
data: {
address: string # Token contract address
symbol: string # Token symbol
name: string # Token name
decimals: string # Token decimals
txCount: string # Transactions with token
createdAt: string # Deployed at timestamp (UTC)
website: string # Website URL
logo: string # Token Image
chainId: string # Chain ID
owner: string # Token owner address
marketCap?: {
eth: string # Market Cap in ETH
usd: string # Market Cap in USD
}
volume: {
eth: string # 24H Volume in ETH
usd: string # 24H Volume in USD
}
tvl?: {
eth: string # TVL in ETH
usd: string # TVL in USD
}
liquidity?: {
eth: string # Liquidity in ETH
usd: string # Liquidity in USD
}
price: {
eth: string # Price in ETH
usd: string # Price in USD
}
totalSupply: string # Total supply of token
pepeAiHolders?: [ # Pepe AI Coupon holders that hold this token
{
address: string
balance: string | number
}
...
]
deployer: string # Deployer wallet address
score?: string # Token Sniffer score
percentChange?: { # Percent changes for token price and volume
price: {
daily: number
weekly: number
monthly: number
}
volume: {
daily: number
weekly: number
monthly: number
}
}
history?: [
{
timestamp: string # Timestamp (UTC)
volume: {
eth: string # Volume in ETH at that time
usd: string # Volume in USD at that time
}
tvl?: {
eth: string # TVL in ETH at that time
usd: string # TVL in USD at that time
}
liquidity?: {
eth: string # Liquidity in ETH at that time
usd: string # Liquidity in USD at that time
}
priceUSD: string # Token price at that time
feesUSD?: string # Fees generated from UniV3
open?: string # Ticker open (wnly with UniV3)
close?: string # Ticker close (only with UniV3
low?: string # Ticker low (only with UniV3)
high?: string # Ticker high (only with UniV3)
txCount?: string # Transaction count at that time
}
...
]
analysis: {
pools: {
count: string | number # Amount of pools
list: [ # Available DEX liquidity pools
{
address: string # Pool address
name: string # Pool name
base: {
symbol: string # Pool base symbol
address: string # Pool base address
reserve: string # Pool base reserve
};
balances: {
owner: string # Pool's owner balance
deployer: string # Pool deployer balance
burned: string # Amount burned
locked: string # Amount locked
};
topHolders: [ # Top LP holders
{
address: string
balance: string
}
...
]
locks: [any]
txs?: [
{
pool: string # Pool address
address: string # Wallet address executing tx
amount: string # Amount in respective token
hash: string # Transaction hash
timestamp: string # UTC timestamp
type: 'sell' | 'buy' # Buy or sell transaction
}
...
]
}
...
]
},
contract: { # Token Sniffer response about contract
verifiedSource: boolean
ownershipRenounced: boolean
hasFeeModifier: boolean
hasMaxTransactionAmount: boolean
hasMint: boolean
hasPause: boolean
isUpgradable: boolean
hasBlacklist: boolean
buyFee: number
sellFee: number
isSellable: boolean
isFlagged: boolean
},
holders: {
count: number # Amount of holders
top: [ # List of top token holders
{
address: string # Holder address
amount: number # Holder balance
}
...
],
creatorHoldsLittle: boolean # Creator holds less than 5%
topTenRatio: boolean | 'N/A' # The top 10% hold less than 5%
},
balances: { # Current token balance allocations
locked: {
amount: string # Token amount locked
share: string # Token percent locked
}
burned: {
amount: string # Token amount burned
share: string # Token percent burned
}
unlocked: {
amount: string # Token amount unlocked
share: string # Token percent unlocked
}
owner: {
amount: string # Token amount owner holds
share: string # Token percent owner holds
}
deployer: {
amount: string # Token amount deployer holds
share: string # Token percent deployer holds
}
},
allocation: { # Token allocation
team: string
community: string
}
}
firstTxs: [ # List of first transactions after deployment
{
to: string
timestamp: string # UTC timestamp of TX
hash: string # TX Hash
from: string # Wallet executed with
amount: string # Amount of transaction
asset: string # Token symbol
}
...
]
pepeAiHolders?: [ # Pepe AI Coupon holders that hold this token
{
address: string
balance: string | number
}
...
]
}
message: 'Success'
isError: false
}Get Token Pools
Query Parameters
Name
Type
Description
Get Token Transfers
Path Parameters
Name
Type
Description
Query Parameters
Name
Type
Description
Get Top Token Holders
Check If Address(es) Hold Token
Multiple Tokens
Get Tokens
Query Parameters
Name
Type
Description
Get New Tokens
Get Top Tokens
Last updated