cURL
curl --request GET \ --url https://openapiv1.coinstats.app/nft/wallet/{address}/assets \ --header 'X-API-KEY: <api-key>'
{ "meta": { "page": 1, "limit": 40, "itemCount": 100, "pageCount": 3, "hasPreviousPage": false, "hasNextPage": true }, "data": [ { "name": "<string>", "logo": "<string>", "address": "<string>", "totalFloorPrice": 123, "totalLastSalePrice": 123, "id": "<string>", "assetsCount": 123, "assets": [ "<string>" ], "floorPrice": 123 } ] }
API key needed to access the endpoints. Example: 'demo-api-key'
1
20
The response is of type object.
object
Was this page helpful?