More resources
Get token list

Get token list#

Get BRC20 tick list, returns a json object with the BRC20 tick info.

Request address#

GET http://{ip}:{port}/api/v1/brc20/tick

Request param#

Default no request parameters.

Response param#

ParameterTypeDescription
codeIntegerThe response code.
msgStringA message describing the error.
dataObjectIt is a object with the tick info.
> tokensArrayThe tick info list.
>> tokenStringThe tick name.
>> inscriptionIdStringThe inscription id.
>> inscriptionNumberNumberThe inscription number.
>> supplyNumberThe tick supply.
>> limitPerMintNumberThe tick transaction limit.
>> mintedNumberThe tick has minted number.
>> decimalNumberThe tick decimal.
>> deployByStringThe tick deploy by owner.
>>> addressStringThe tick deploy's address.
>>> scriptHashStringThe tick deploy's scripHash .
>> txidStringThe transaction hash .
>> deployHeightNumberThe transaction block height.
>> deployBlocktimeNumberThe transaction block time.

Request example#

shell
curl --location --request GET 'http://{ip}:{port}/api/v1/brc20/tick'

Response example#

200
{
    "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
        ]
    }
}