Collection
The Collection API allows you to easily get colletion assets information.
Last updated
The Collection API allows you to easily get colletion assets information.
Last updated
Get nft list of a collection
get
/v1/collection/nft_list
id
: required, contract address of nft
chain_id
: required, chain id, eg: eth
, bsc
, xdai
, .
start
: integer
offset, default is 0, max is 100000.
limit
: integer
limit size, default is 20, max is 100.
Array
of Object
- An object with following fields:
id
: string
- Unique Id.
contract_id
: string
- The address of the token contract.
inner_id
: string
- The index id.
name
: string
- The nft's name.
description
: string
- The nft's description.
content_type
: string
- The nft's content type. eg: image_url, video_url, audio_url
content
: string
- The nft's content. null
if not available.
detail_url
: string
- refer to the nft's detail page
thumbnail_url
: string
- refer to the nft's thumbnail page
contract_name
: string
- Contract name.
is_erc1155
:boolean
- Whether it is erc1155.
is_erc721
:boolean
- Whether it is erc721.
attributes
: Array
of the following Object
trait_type
: string
- attribute type
value
: attribute value
Request
Result