GET
/
nfts
List NFTs
curl --request GET \
  --url https://indexer.testnet.incentiv.net/api/nfts
{
  "total": 123,
  "items": [
    {
      "assetId": "<string>",
      "name": "<string>",
      "symbol": "<string>",
      "creator": "<string>",
      "uri": "<string>",
      "owner": "<string>",
      "type": "<string>",
      "metadata": {}
    }
  ]
}

Query Parameters

symbol
string

Symbol of the NFT collection to filter by.

creator
string

Address of the creator to filter by.

offset
integer

Pagination offset.

limit
integer

Maximum number of NFTs to return.

Response

200 - application/json

A list of NFTs.

The response is of type object.