cURL
curl --request GET \ --url https://openapiv1.coinstats.app/nft/{collectionAddress}/assets \ --header 'X-API-KEY: <api-key>'
{ "meta": { "page": 1, "limit": 40, "itemCount": 100, "pageCount": 3, "hasPreviousPage": false, "hasNextPage": true }, "data": [ { "address": "<string>", "blockchain": "<string>", "tokenId": "<string>", "attributes": [ "<string>" ], "collectionId": "<string>", "lastSaleDate": "2023-11-07T05:31:56Z", "lastSalePrice": 123, "name": "<string>", "previewUrl": "<string>", "rarityRank": 123, "rarityScore": 123, "source": "<string>", "standard": "<string>", "url": "<string>", "listSource": {}, "listPrice": 123 } ] }
API key needed to access the endpoints. Example: 'demo-api-key'
1
20
listed
all
The response is of type object.
object
Was this page helpful?