Get specified BRC-20 token circulation information, including number of holder addresses, number of minted, etc.
GET https://www.okx.com/api/v5/explorer/brc20/token-details
Parameter | Type | Required | Description |
---|---|---|---|
token | String | Yes | BRC-20 inscription tick |
Parameter | Type | Description |
---|---|---|
token | String | BRC-20 inscription tick |
precision | String | Precision |
totalSupply | String | Inscription total supply |
mintAmount | String | Inscription mint amount |
limitPerMint | String | Inscription maximum number of mint per time |
holder | String | Inscription number of token addresses held |
deployAddress | String | the address that deploy the inscription |
logoUrl | String | Inscription logo |
txId | String | Inscription transaction hash |
inscriptionId | String | Inscription id |
deployHeight | String | Inscription deploy height |
deployTime | String | Inscription deploy time |
inscriptionNumber | String | Inscription number |
state | String | Inscription State (success, fail) |
tokenType | String | Insctiption type, BRC-20 |
curl --location --globoff 'https://www.okx.com/api/v5/explorer/brc20/token-details?token=sats' \
--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",
}]
}