Token

Inscription Token API

Tokens

GET /tokens

Get Inscription Tokens list.

Headers

Name
Value

Content-Type

application/json

Request

Name
Type
Description
Optional

order_by

string, values: (holders)

Sort

mint_finished

bool

Mint finished filter

page

number

page number

Response

{
    "data": [
        {
            "blocknumber": "9931503",
            "from": "0x282e803c107fe517cf65f689afabdf84be8be3cd",
            "holders": "46881",
            "insc_id": 1,
            "market_cap": "651859250000000146472960",
            "market_floor_price": "8000000000000",
            "market_txs24h": "12",
            "market_volume24h": "52386238",
            "mint_finished": true,
            "mint_limit": "1000",
            "mint_max": "21000000000",
            "mint_progress": "21000608000",
            "tick": "test",
            "tick_i": "test",
            "timestamp": "1703093221",
            "tx": "0x0739e5e2a5cfd77711173683daf5d0bcbe529178af6996c5b784dfef0b98a12b"            
        },{
            ...
        },
        ...
    ],
    "error_code": 0
}

Token Info

GET /token_info

Get specific token info.

Headers

Name
Value

Content-Type

application/json

Body

Name
Type
Description

tick

string

Ticker of token

Response

Token Holders

GET /token_holders

Get holders list of specific token.

Headers

Name
Value

Content-Type

application/json

Request

Name
Type
Description

tick

string

ticker of token

page

number

page number

Response

Token Balance

GET /token_balance

Get token balances of specific address.

Headers

Name
Value

Content-Type

application/json

Request

Name
Type
Description

address

string

Wallet address

Response

Token Transactions

GET /token_txs

Get transfers tx of specific token.

Headers

Name
Value

Content-Type

application/json

Request

Name
Type
Description

tick

string

ticker of token

page

number

page number

Response

Last updated