More resources
Query all BRC-20 token list

Query all BRC-20 token list#

Get the list of BRC-20 inscription from the whole chain.

Request address#

GET https://www.okx.com/api/v5/explorer/brc20/token-list

Request param#

ParameterTypeRequiredDescription
tokenStringNoBRC-20 inscription tick
pageStringNoPage
limitStringNoNumber of results per request. The maximum is 50. The default is 20.

Response param#

ParameterTypeDescription
pageStringCurrent page number
limitStringThe amount of data
totalPageStringTotal number of pages
tokenListArray<String>Return Inscription detail information,including deploy time
> tokenStringBRC-20 Inscription tick
> deployTimeStringInscription Deploy time
> inscriptionIdStringInscription Id
> inscriptionNumberStringInscription number
> totalSupplyStringInscription total supply
> mintAmountStringInscription mint amount
> transactionCountStringTotal nmuber of Inscription transactions
> holderStringNumber of addresses holding Inscription
> mintRateStringInscription mint ratio, displayed as a decimal, e.g. 0.9543; retains four decimal places.

Request example#

shell
curl --location --globoff 'https://www.okx.com/api/v5/explorer/brc20/token-list' \
     --header 'OK-ACCESS-KEY: ******' \
     --header 'OK-ACCESS-SIGN: ******' \
     --header 'OK-ACCESS-TIMESTAMP: ******'

Response example#

200
{
  "code": "0",
  "msg": "",
  "data": [{
    "token": "sats",
    "precision": "18",
    "totalSupply": "2100000000000000",
    "mintAmount": "30658561856757.1",
    "limitPerMint": "100000000",
    "holder": "8354",
    "deployAddress": "bc1prtawdt82wfgrujx6d0heu0smxt4yykq440t447wan88csf3mc7csm3ulcn",
    "logoUrl": "",
    "txId": "9b664bdd6f5ed80d8d88957b63364c41f3ad4efb8eee11366aa16435974d9333",
    "inscriptionId": "9b664bdd6f5ed80d8d88957b63364c41f3ad4efb8eee11366aa16435974d9333i0",
    "deployHeight": "779971",
    "deployTime": "1678339934000",
    "inscriptionNumber": "357097",
    "state": "success",
    "tokenType": "BRC20",
    "msg": ""
  }]
}