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

The response is of type object.