Burns
List of NFT Base Burns API Endpoints.
get
https://explorer.protokol.sh/api/nft/burns
/burns
Curl
Typescript
curl https://explorer.protokol.sh/api/nft/burns
const response = connection.NFTBaseApi("burns").all();
>>> Promise<ApiResponseWithPagination<BurnsResource[]>>
get
https://explorer.protokol.sh/api/nft/burns/:id
/burns/:id
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