API Endpoints
List of NFT API Endpoints For NFT-Base and NFT-Exchange
Default prefix for NFT Base is
/api/nft
Endpoint | Description | Type |
Returns all assets | GET | |
Returns asset by id | GET | |
Returns the wallet owning an asset | GET | |
Returns the assets that wallet owns | GET | |
Search assets | POST | |
/assets/claim | Claims an asset | POST |
Endpoint | Description | Type |
Returns all burns | GET | |
Returns burn by id | GET |
Endpoint | Description | Type |
Returns all collections | GET | |
Returns collection by id | GET | |
Returns the schema of a collection | GET | |
Returns the wallet owning a collection | GET | |
Search collections | POST | |
Returns the assets of a collection | GET |
Endpoint | Description | Type |
Returns all configurations | GET |
Endpoint | Description | Type |
Returns all transfers | GET | |
Returns transfer by id | GET |
Default prefix for NFT Exchange is
/api/nft/exchange
Endpoint | Description | Type |
Returns all active auctions | GET | |
Returns auction by id | GET | |
Returns the wallet owning an auction | GET | |
Search auctions | POST | |
Returns all canceled auctions | GET | |
Returns canceled auction by :id | GET |
Endpoint | Description | Type |
Returns all bids | GET | |
Returns bid by id | GET | |
Returns the wallet owning a bid | GET | |
Search bids | POST | |
Returns all canceled bids | GET | |
Returns canceled bids by id | GET |
Endpoint | Description | Type |
Returns all configurations | GET |
Endpoint | Description | Type |
Returns all trades | GET | |
Returns trade by id | GET | |
Search trades | POST |
A Light Typescript Client Supporting NFT REST API
yarn add @protokol/client
pnpm add @protokol/client
npm install @protokol/client
import { ProtokolConnection } from "@protokol/client";
const connection = new ProtokolConnection("https://explorer.protokol.sh/api");
Last modified 1yr ago