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": {}
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.incentiv.io/llms.txt

Use this file to discover all available pages before exploring further.

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[]