NFT Metadata
  1. collection
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. collection

update

PUT
/collections/{id}

Request

Path Params
id
string 
required
Header Params
Authorization
string 
optional
Example:
Bearer {{token}}
Body Params application/json
address
string 
required
identifier
string 
required
metadata
object (PartialMetadata) 
required
name
string  | null 
optional
description
string  | null 
optional
imageUrl
string  | null 
optional
externalUrl
string  | null 
optional
sellerFee
integer  | null 
optional
feeRecipient
string  | null 
optional
Example
{
    "address": "0x8186b1b1397acd543a990347b01d5ccf29490a66",
    "identifier": "words-tell-art-origin",
    "metadata": {
    }
}

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/collections/' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
    "address": "0x8186b1b1397acd543a990347b01d5ccf29490a66",
    "identifier": "words-tell-art-origin",
    "metadata": {
    }
}'

Responses

🟢200OK
application/json
Body
object {0}
Example
{}
Modified at 2025-04-11 08:13:25
Previous
create
Next
get
Built with