Skip to main content
GET
/
v1
/
metadata
/
{collectionSlug}
/
{tokenId}
Get product metadata
curl --request GET \
  --url https://api.oneofnone.io/v1/metadata/{collectionSlug}/{tokenId}
{
  "name": "<string>",
  "description": "<string>",
  "external_url": "<string>",
  "image": "<string>",
  "animation_url": "<string>",
  "attributes": [
    {
      "trait_type": "<string>",
      "value": "<string>"
    }
  ]
}

Path Parameters

collectionSlug
string
required

The unique slug identifier of the collection

tokenId
string
required

The token ID of the product

Response

Successfully retrieved product metadata

name
string
required

The name of the product

attributes
object[]
required

Array of product attributes formatted for NFT marketplaces

description
string

A detailed description of the product

external_url
string<uri>

URL to the product's external page

image
string<uri>

URL to the product's image or video poster

animation_url
string<uri>

URL to the product's video (if available)

I