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

list

GET
/models

Request

Query Params
chainId
string 
optional
Example:
ethereum
collectionAddress
string 
optional
Example:
0x0F5CA769A8f6b303F6be2C64ae17e49Ff566C577
page
integer 
optional
Example:
0
pageSize
integer 
optional
Example:
100

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?chainId=ethereum&collectionAddress=0x0F5CA769A8f6b303F6be2C64ae17e49Ff566C577&page=0&pageSize=100'

Responses

🟢200OK
application/json
Body
models
array[object (ModelDTO) {7}] 
required
id
integer 
required
chainId
string 
required
collectionAddress
string 
required
modelId
string 
required
metadata
object (Metadata) 
required
createdAt
string 
required
updatedAt
string 
required
Example
{
    "models": [
        {
            "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-29 12:34:22
Previous
get
Next
create
Built with