Transfers
List of NFT Base Transfer Endpoints.
get
https://explorer.protokol.sh/api/nft/transfers
/transfers
Curl
Typescript
curl https://explorer.protokol.sh/api/nft/transfers
const response = connection.NFTBaseApi("transfers").all();
>>> Promise<ApiResponseWithPagination<TransfersResource[]>>
get
https://explorer.protokol.sh/api/nft/transfers/:id
/transfers/:id
Curl
Typescript
curl https://explorer.protokol.sh/api/nft/transfers/5a5fe2fb9c5b1102b2d6266d41b6184676bd42c2b648c82e13264a562252072b
const response = connection.NFTBaseApi("transfers").get("VALID_ID");
>>> Promise<ApiResponse<TransfersResource>>
Last modified 1yr ago