GET
/
nft
/
wallet
/
{address}
/
assets
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
    }
  ]
}
40 credits per request
Returns a list of NFT assets owned by a wallet address.

Authorizations

X-API-KEY
string
header
required

API key needed to access the endpoints. Example: 'demo-api-key'

Path Parameters

address
string
required

Query Parameters

page
number
Example:

1

limit
number
Example:

20

Response

200
application/json

The response is of type object.