Skip to main content
GET
/
nfts
List NFTs
curl --request GET \
  --url https://indexer.mainnet.incentiv.io/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.

total
integer
items
object[]