Protokol
Search
K

Burns

List of NFT Base Burns API Endpoints.

All Burns

get
https://explorer.protokol.sh/api/nft/burns
/burns

Examples

Curl
Typescript
curl https://explorer.protokol.sh/api/nft/burns
const response = connection.NFTBaseApi("burns").all();
>>> Promise<ApiResponseWithPagination<BurnsResource[]>>

Burn By Id

get
https://explorer.protokol.sh/api/nft/burns/:id
/burns/:id

Examples

Curl
Typescript
curl https://explorer.protokol.sh/api/nft/burns/f2c47694e32cdb7cae7e3ca8726836fac323a3175559277469faf541ae49c5b4
const response = connection.NFTBaseApi("burns").get("VALID_ID");
>>> Promise<ApiResponse<BurnsResource>>
Last modified 1yr ago