BRC7648 indexer

Source Code https://github.com/muadao/brc7648_indexer

This BRC7648 indexer works by tracking and indexing valid BRC7648 inscription data on bitcoin transaction data. A valid BRC7648 is described here

The following API endpoints can be used to query the BRC7648 indexed.

API Endpoints:


Listing of all deployed BRC7648 :

Examples:

Optional Query String:

network=testnet for testnet , default is mainnet.

limit and offset can be used for pagination. Example limit=100&offset=20


GET /brc7648/v1/token/:deployid

Detailed Info of deployed BRC7648:

Required:

:deployid , the deployed BRC7648 inscription id

Optional Query String:

network=testnet for testnet , default is mainnet.

Example:


GET /brc7648/v1/holders/:deployid

Get the list of holders of the deployed BRC7648

Required:

:deployid , the deployed BRC7648 inscription id

Optional Query String:

network=testnet for testnet , default is mainnet.

limit and offset can be used for pagination. Example limit=100&offset=20

Example:


GET /brc7648/v1/mints/:deployid

Get the list of mints given the deployed inscription ID:

Required:

:deployid , the deployed BRC7648 inscription id

Optional Query String:

network=testnet for testnet , default is mainnet.

limit and offset can be used for pagination. Example limit=100&offset=20

Example:


GET /brc7648/v1/address/:address

Get the list of mints given the address:

Required:

:address, the address of the BTC wallet.

Optional Query String:

network=testnet for testnet , default is mainnet.

limit and offset can be used for pagination. Example limit=100&offset=20

Last updated