Skip to main content
GET
/
nfts
/
{assetId}
Get NFT Metadata
curl --request GET \
  --url https://indexer.mainnet.incentiv.io/api/nfts/{assetId}
{
  "assetId": "<string>",
  "name": "<string>",
  "symbol": "<string>",
  "creator": "<string>",
  "uri": "<string>",
  "owner": "<string>",
  "type": "<string>",
  "metadata": {}
}

Path Parameters

assetId
string
required

NFT asset identifier (e.g., contract address or token ID).

Response

200 - application/json

NFT metadata and ownership information.

assetId
string
required

Unique identifier for the NFT.

name
string
required

Name of the NFT.

symbol
string
required

Symbol of the NFT collection.

creator
string
required

Address of the NFT creator.

uri
string
required

Token URI pointing to metadata.

owner
string
required

Current owner address of the NFT.

type
string
required

Type of the asset (e.g., 'erc721', 'erc1155').

metadata
object

Additional metadata for display, such as image, description, attributes.