Skip to main content
GET
https://api.krownlabs.app
/
api
/
tokens
/
{addressOrPath}
/
{tokenId}
curl "https://api.krownlabs.app/api/tokens/sonic-punks/1"
{
  "id": "<string>",
  "tokenId": 123,
  "collectionAddress": "<string>",
  "collectionName": "<string>",
  "name": "<string>",
  "description": "<string>",
  "image": "<string>",
  "thumbnailUrl": "<string>",
  "previewUrl": "<string>",
  "mediaType": "<string>",
  "tokenURI": "<string>",
  "owner": "<string>",
  "nftType": "<string>",
  "amount": 123,
  "isListed": true,
  "listingPrice": "<string>",
  "listingSource": "<string>",
  "isInAuction": true,
  "hasOffers": true,
  "lastPrice": "<string>",
  "attributes": [
    {
      "trait_type": "<string>",
      "value": {},
      "rarity": 123,
      "display_type": "<string>"
    }
  ],
  "rarity": {
    "rank": 123,
    "total": 123,
    "formatted": "<string>",
    "percentile": 123,
    "score": 123
  },
  "rarityRank": 123,
  "rarityScore": 123,
  "metadata": {},
  "marketplaceDetails": {
    "source": "<string>",
    "sourceDisplayName": "<string>",
    "externalUrl": "<string>",
    "externalId": "<string>"
  },
  "imageProcessed": true,
  "createdAt": "<string>",
  "updatedAt": "<string>"
}

Path Parameters

addressOrPath
string
required
Collection contract address or URL path
tokenId
string
required
Token ID

Response

id
string
Unique token identifier (collection-tokenId)
tokenId
number
Token ID within the collection
collectionAddress
string
Contract address of the collection
collectionName
string
Collection name
name
string
NFT name
description
string
NFT description
image
string
Original image URL
thumbnailUrl
string
Thumbnail image URL
previewUrl
string
Preview image URL
mediaType
string
Media type (e.g., “image”, “video”)
tokenURI
string
Token metadata URI
owner
string
Current owner wallet address
nftType
string
NFT standard (ERC721 or ERC1155)
amount
number
Token amount (for ERC1155)
isListed
boolean
Whether the NFT is currently listed
listingPrice
string
Current listing price in wei (if listed)
listingSource
string
Listing source marketplace
isInAuction
boolean
Whether the NFT is in an active auction
hasOffers
boolean
Whether the NFT has active offers
lastPrice
string
Last sale price in wei
attributes
array
NFT traits/attributes
rarity
object
Rarity information
rarityRank
number
Rarity rank (1 = rarest)
rarityScore
number
Calculated rarity score
metadata
object
Original NFT metadata from contract
marketplaceDetails
object
Marketplace listing details
imageProcessed
boolean
Whether image processing is complete
createdAt
string
Token creation timestamp
updatedAt
string
Last update timestamp
curl "https://api.krownlabs.app/api/tokens/sonic-punks/1"