GET
/
nft
/
{collectionAddress}
/
asset
/
{tokenId}
cURL
curl --request GET \
  --url https://openapiv1.coinstats.app/nft/{collectionAddress}/asset/{tokenId} \
  --header 'X-API-KEY: <api-key>'
{
  "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
}
5 credits per request
Returns detailed information about a specific NFT asset.

Authorizations

X-API-KEY
string
header
required

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

Path Parameters

collectionAddress
string
required
tokenId
string
required

Response

200
application/json

Get single asset

The response is of type object.