GET
/
nft
/
{collectionAddress}
/
assets
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
    }
  ]
}
8 credits per request
Returns the list of NFT assets associated with NFT Collection by collectionAddress.

Authorizations

X-API-KEY
string
header
required

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

Path Parameters

collectionAddress
string
required

Query Parameters

page
number
Example:

1

limit
number
Example:

20

type
enum<string>
Available options:
listed,
all

Response

200
application/json

The response is of type object.