Get Collections
Get list collections
Query Parameters
cursor string
The cursor returned in the previous response (used for getting the next page).
limit number
Number of items returned, default: 20
Responses
- 200
Successful
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
cursor string
The cursor returned in the previous response (used for getting the next page)
page number required
Page of results
limit number required
Limit of results
total_items number required
Total returned result items
data object[] required
Array of documents
address string required
The address of the NFT contract
type string required
The type of NFT contract standard
name string required
The name of the NFT contract
owner string
The owner of the NFT contract
base_uri string
The base uri of the NFT contract
total_supply string
The total supply of the NFT contract
description string
The description of the NFT contrac
external_link string
The external link of the NFT contract
image string
The image url of the NFT contract
last_synced_at number
The last synced time of the NFT contract
{
"cursor": "string",
"page": 0,
"limit": 0,
"total_items": 0,
"data": [
{
"address": "string",
"type": "string",
"name": "string",
"owner": "string",
"base_uri": "string",
"total_supply": "string",
"description": "string",
"external_link": "string",
"image": "string",
"last_synced_at": 0
}
]
}
Loading...