Get detail of an NFT
API Deprecation Notice
This API endpoint will be deprecated by the end of Q1 2025 as part of Skynet sunsetting. Please migrate to the Moralis alternative: Get NFT metadata
GET/collections/:contractAddress/tokens/:tokenId
For usage instructions, see Get NFTs details
Request
Path Parameters
contractAddress stringrequired
ContractAddress address. Example: 0x32950db2a7164ae833121501c797d79e7b79d74c
tokenId stringrequired
TokenId
Responses
- 200
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
result
object
tokenId string
contractAddress string
name string
symbol string
standard string
tokenUri string
metadata object
{
"result": {
"tokenId": "string",
"contractAddress": "string",
"name": "string",
"symbol": "string",
"standard": "string",
"tokenUri": "string",
"metadata": {}
}
}
not found
- application/json
- Schema
- Example (from schema)
Schema
errorCode integer
message string
{
"errorCode": 0,
"message": "string"
}
internal error
- application/json
- Schema
- Example (from schema)
Schema
errorCode integer
message string
{
"errorCode": 0,
"message": "string"
}
Loading...