NFT Metadata
  1. metadata
NFT Metadata
  • collection
    • list
      GET
    • create
      POST
    • update
      PUT
    • get
      GET
  • model
    • list
      GET
    • create
      POST
    • update
      PUT
    • get
      GET
  • token
    • list
      GET
    • get
      GET
  • logs
    • list
      GET
  • metadata
    • collection-get
      GET
    • token-get
      GET
    • token-update
      PUT
  • version
    GET
  1. metadata

token-update

PUT
/metadata/{chainId}/{collection}/{tokenId}

Request

Path Params
chainId
string 
required
Example:
ethereum
collection
string 
required
tokenId
string 
required
Example:
1
Header Params
Authorization
string 
optional
Example:
Bearer {{token}}
Body Params application/json
name
string  | null 
optional
description
string  | null 
optional
imageUrl
string  | null 
optional
animationUrl
string  | null 
optional
externalUrl
string  | null 
optional
properties
optional
Any of
Example
{
    "name": "word_1",
    "description": "",
    "imageUrl": "",
    "animationUrl": "",
    "externalUrl": "",
    "properties": {
            "w1": "",
            "w2": "",
            "w3": "",
            "w4": "",
            "w5": ""
    }
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://metadata.dlab.ovh/api/metadata/ethereum//1' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "word_1",
    "description": "",
    "imageUrl": "",
    "animationUrl": "",
    "externalUrl": "",
    "properties": {
            "w1": "",
            "w2": "",
            "w3": "",
            "w4": "",
            "w5": ""
    }
}'

Responses

🟢200OK
application/json
Body
object {0}
Example
{}
Modified at 2025-04-11 08:30:22
Previous
token-get
Next
version
Built with