Collection
The Collection API allows you to easily get colletion assets information.
Get nft list of a collection
Get nft list of a collection
Method
get
Path
/v1/collection/nft_list
Parameters
id
: required, contract address of nftchain_id
: required, chain id, eg:eth
,bsc
,xdai
, for more info.start
:integer
offset, default is 0, max is 100000.limit
:integer
limit size, default is 20, max is 100.
Returns
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_urlcontent
:string
- The nft's content.null
if not available.detail_url
:string
- refer to the nft's detail pagethumbnail_url
:string
- refer to the nft's thumbnail pagecontract_name
:string
- Contract name.is_erc1155
:boolean
- Whether it is erc1155.is_erc721
:boolean
- Whether it is erc721.attributes
:Array
of the following Objecttrait_type
:string
- attribute typevalue
: attribute value
Request
Result
Last updated