Get BRC20 tick list, returns a json object with the BRC20 tick info.
GET http://{ip}:{port}/api/v1/brc20/tick
Default no request parameters.
Parameter | Type | Description |
---|---|---|
code | Integer | The response code. |
msg | String | A message describing the error. |
data | Object | It is a object with the tick info. |
> tokens | Array | The tick info list. |
>> token | String | The tick name. |
>> inscriptionId | String | The inscription id. |
>> inscriptionNumber | Number | The inscription number. |
>> supply | Number | The tick supply. |
>> limitPerMint | Number | The tick transaction limit. |
>> minted | Number | The tick has minted number. |
>> decimal | Number | The tick decimal. |
>> deployBy | String | The tick deploy by owner. |
>>> address | String | The tick deploy's address. |
>>> scriptHash | String | The tick deploy's scripHash . |
>> txid | String | The transaction hash . |
>> deployHeight | Number | The transaction block height. |
>> deployBlocktime | Number | The transaction block time. |
curl --location --request GET 'http://{ip}:{port}/api/v1/brc20/tick'
{
"code": 0,
"msg": "ok",
"data": {
"tokens": [
{
"tick": " ",
"inscriptionId": "43ecb6524861885ec3f4086870346ed1d18133ebfc910522a103d2193dd70fa0i0",
"inscriptionNumber": 2139586,
"supply": "3141592000000000000000000",
"limitPerMint": "314000000000000000000",
"minted": "3454000000000000000000",
"decimal": 18,
"deployBy": {
"address": "bc1pazu4nw5lkrhzjsq4guq4usjg5spf5cwew4fscz8fenlpc4d3s33s8zzkyh"
},
"txid": "43ecb6524861885ec3f4086870346ed1d18133ebfc910522a103d2193dd70fa0",
"deployHeight": 787382,
"deployBlocktime": 1682700614
}
// ....... many token
]
}
}