Get the list of BRC-20 inscription from the whole chain.
GET https://www.okx.com/api/v5/explorer/brc20/token-list
Parameter | Type | Required | Description |
---|---|---|---|
token | String | No | BRC-20 inscription tick |
page | String | No | Page |
limit | String | No | Number of results per request. The maximum is 50. The default is 20. |
Parameter | Type | Description |
---|---|---|
page | String | Current page number |
limit | String | The amount of data |
totalPage | String | Total number of pages |
tokenList | Array<String> | Return Inscription detail information,including deploy time |
> token | String | BRC-20 Inscription tick |
> deployTime | String | Inscription Deploy time |
> inscriptionId | String | Inscription Id |
> inscriptionNumber | String | Inscription number |
> totalSupply | String | Inscription total supply |
> mintAmount | String | Inscription mint amount |
> transactionCount | String | Total nmuber of Inscription transactions |
> holder | String | Number of addresses holding Inscription |
> mintRate | String | Inscription mint ratio, displayed as a decimal, e.g. 0.9543; retains four decimal places. |
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: ******'
{
"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": ""
}]
}