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

get

GET
/models/{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/models/'

Responses

🟢200OK
application/json
Body
model
object (ModelDTO) 
required
id
integer 
required
chainId
string 
required
collectionAddress
string 
required
modelId
string 
required
metadata
object (Metadata) 
required
createdAt
string 
required
updatedAt
string 
required
Example
{
    "model": {
        "id": 0,
        "chainId": "string",
        "collectionAddress": "string",
        "modelId": "string",
        "metadata": {
            "name": "string",
            "description": "string",
            "imageUrl": "string",
            "animationUrl": "string",
            "externalUrl": "string",
            "properties": "string"
        },
        "createdAt": "string",
        "updatedAt": "string"
    }
}
Modified at 2025-04-11 08:13:09
Previous
update
Next
list
Built with