V2

Searching Tokens

Search for the tokens associated with given keyword

GET https://dev.memetracker.me/v2/tokens?keyword={keyword}

The keyword must not be null or empty, search by SYMBOL or CONTRACT ADDRESS, and will return max 100 tokens.

Query Parameters

Name
Type
Description

keyword*

String

The keyword needed to query

chain

String

Optional

Headers

Name
Type
Description

X-API-KEY*

String

Your API key needed to access the url

```json
{
    "status": 1,
    "msg": "SUCCESS",
    "data_type": 1,
    "data": [
        {
            "appendix": "{\"contractAddress\":\"\",\"tokenName\":\"\",\"symbol\":\"\",\"divisor\":\"\",\"tokenType\":\"\",\"totalSupply\":\"\",\"blueCheckmark\":\"\",\"description\":\"ATM既是永动机也是:提款机\\n核心:币涨赚币价 币跌分红赚\\n\\nBSC链首个传世币一币传三代\\nBSC链首个可以随意唱空的币\\nBSC链首个分红超级暴力的币\\nBSC链首个把波段当兄弟的币\\nBSC链首个不看池子和币价币\\nATM  首创多项龙头抓紧上车\\n\\n持有1枚即可开始享受暴力分红\\n机制:0.1营销 0.3回流 2.6分红\\n卖单: 额外无损增加100%分红\",\"website\":\"\",\"email\":\"\",\"blog\":\"\",\"reddit\":\"\",\"slack\":\"\",\"facebook\":\"\",\"twitter\":\"https://twitter.com/ATMZWSQ\",\"btok\":\"\",\"bitcointalk\":\"\",\"github\":\"\",\"telegram\":\"https://t.me/ATMZWSQ\",\"wechat\":\"\",\"linkedin\":\"\",\"discord\":\"\",\"qq\":\"\",\"whitepaper\":\"\",\"tokenPriceUSD\":\"\"}",
            "burn_amount": "1111111",
            "buy_tx": "3.0",
            "chain": "bsc",
            "created_at": 1711179777,
            "current_price_eth": 1.954695817865348e-8,
            "current_price_usd": 0.000010993584854389429,
            "decimal": 1,
            "fdv": "775.415951365567664034926",
            "holders": 14304,
            "is_mintable": "0",
            "launch_at": 0,
            "launch_price": 0.011005913770273977,
            "lock_amount": "0",
            "locked_percent": "0",
            "logo_url": "https://www.logofacade.com/token_icon_request/65ffb2a20a9e59af22dae8a5_1711256226.png",
            "market_cap": "775.415951365567664034926",
            "name": "ATM",
            "other_amount": "879999999999999999999928355395",
            "price_change_1d": -76.53,
            "price_change_24h": -99.96,
            "risk_info": "",
            "risk_level": 1,
            "risk_score": 20,
            "sell_tx": "3.0",
            "symbol": "ATM",
            "token": "0xa5957e0e2565dc93880da7be32abcbdf55788888",
            "total": "880000000000000000000000000000",
            "tx_count_24h": 48128,
            "tx_volume_u_24h": "13385053.845136339041938053689092560385856"
        }
    ]
}
```
Response Fields
Value Type
Description

token

varchar

chain

varchar

symbol

varchar

decimal

int

name

varchar

total

varchar

lock_amount

varchar

burn_amount

varchar

other_amount

varchar

fdv

varchar

fdv = (total - burn_amount - other_amount) * current_price_usd

market_cap

varchar

market_cap = (total - lock_amount - burn_amount - other_amount) * current_price_usd

launch_price

float64

launch_at

timestamp

current_price_eth

float64

calculate by the chain main token xxprice MAIN TOKEN per xxx Token

current_price_usd

float64

price_change_1d

float64

daily price change, start from UTC+0 *recommend

price_change_24h

float64

tx_volume_u_24h

float64

tx_count_24h

float64

holders

int

logo_url

varchar

maybe null or "" for empty logo, need client to set a default logo

intro_en

varchar

intro_cn

varchar

appendix

json varchar

Media info, like twitter, telegram, website, whitepaper, discord, qq, btok, facebook, reddit, etc

risk_level

int

-1 - high risk token 0 - normal, unverified token 1 - listed token (risk_level == -1 or (risk_level != 1 and risk_score>55)) are high risk tokens

risk_score

int

< 20 safe <=55 normal > 55 high risk

buy_tax

float varchar

sell_tax

float varchar

locked_to

date

locked_percent

float varchar

lock_platform

varchar

is_mintable

int varchar

1 - mintable 0 - not mintable

created_at

timestamp

updated_at

timestamp

Get Token Prices

POST https://dev.memetracker.me/v2/tokens/price

Get token latest price

Reqest Json Body

Name
Type
Description

token_ids

Array

list of token ids, max 200 token ids

Headers

Name
Type
Description

X-API-KEY*

String

Your API key needed to access the url

Response Fields
Value Type
Description

current_price_usd

float varchar

price_change_1d

float varchar

price_change_24h

float varchar

Get Token Rank Topics

GET https://dev.memetracker.me/v2/ranks/topics

Get token rank topics

Get Token List By Topic

GET https://dev.memetracker.me/v2/ranks?topic={topic}

Get token topic token list, each list will return max 100 tokens

Query Parameters

Name
Type
Description

topic

String

topic in topic list

Get Token Details

GET https://dev.memetracker.me/v2/tokens/{token-id}

Get token details

Query Parameters

Name
Type
Description

token_id

string

token_id = {token}-{chain} eg: 0x05ea877924ec89ee62eefe483a8af97e77daeefd-bsc

Response Json Data

Name
Type
Description

--for pair info ----

reserve0

float64 varchar

the amount of token0

reserve1

float54 varchar

the amount of token1

Get Pair Kine Data

GET https://dev.memetracker.me/v2/klines/pair/{pair-id}?interval={interval}&size={size}

Get token details

Query Parameters

Name
Type
Description

pair_id

string

token_id = {pair}-{chain} eg: 2prhzdRwWzas2f4g5AAjyRUBcQcdajxd8NAzKcqhv76P-solana

category

string

default is u, means return usd value kline data. r means return base token value kline data

interval

int

The time interval of K-Line, 1,5,15,30,60,120,240,1440,4320,10080,43200,525600,2628000

limit

int

The number of records need to return

to_time

int

default null, means latest now

Get Token Kine Data

GET https://dev.memetracker.me/v2/klines/token/{token-id}?interval={interval}&size={size}

Get token details

Query Parameters

Name
Type
Description

token_id

string

token_id = {token}-{chain} eg: 5hmf8Jt9puwoqiFQTb3vr22732ZTKYRLRw9Vo7tN3rcz-solana

interval

int

The time interval of K-Line, 1,5,15,30,60,120,240,1440,4320,10080,43200,525600,2628000

limit

int

The number of records need to return

to_time

int

default null, means latest now

Get Token Top100 Holders

GET https://dev.memetracker.me/v2/tokens/top100/{token-id}

Get token details

Query Parameters

Name
Type
Description

token_id

string

token_id = {token}-{chain} eg: 0xd1fa42f9c7dcb525231e2cf6db0235290ada6381-bsc

Get Pair Txs

GET https://dev.memetracker.me/v2/txs/{pair-id}?limit={limit}&size={size}&to_time={to_time}

Get token details

Query Parameters

Name
Type
Description

pair_id

string

pair_id = {pair}-{chain} eg: 0xd1fa42f9c7dcb525231e2cf6db0235290ada6381_fo-bsc

limit

int

The number of records need to return

to_time

int

default null, means latest now

Get Logo List

GET https://dev.memetracker.me/v2/logos?start={start}

Get token topic token list, each list will return max 100 tokens

Query Parameters

Name
Type
Description

start

timestamp microseconds

start time, from 0 to the latest time

Response Json Data

Name
Type
Description

next

timestamp microseconds

the next start timestamp

Get Supported Chains

GET https://dev.memetracker.me/v2/supported_chains

Get all the chains, supported by ave

Get Chain Main Tokens

GET https://dev.memetracker.me/v2/tokens/main?chain={chain_name}

Get chain's main token list

GET https://dev.memetracker.me/v2/tokens/trending?chain={chain_name}

Get chain's main token list

Get Contract Risk Detection Report

GET https://dev.memetracker.me/v2/contracts/{chain_id}

Get contract risk detection report

Query Paramters

Params
Description

token_id

token_id = {token}-{chain} eg: 0x05ea877924ec89ee62eefe483a8af97e77daeefd-bsc

Reponse Body

Last updated