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

get

GET
/collections/{id}

Request

Path Params
id
string 
required

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 GET 'https://metadata.dlab.ovh/api/collections/'

Responses

🟢200OK
application/json
Body
collection
object (CollectionDTO) 
required
id
integer 
required
chainId
string 
required
address
string 
required
name
string 
required
createdAt
string 
required
updatedAt
string 
required
Example
{
    "collection": {
        "id": 0,
        "chainId": "string",
        "address": "string",
        "name": "string",
        "createdAt": "string",
        "updatedAt": "string"
    }
}
Modified at 2025-04-11 08:13:23
Previous
update
Next
list
Built with