Get any NFT contract
This endpoint is used for accessing detailed information about a specific contract on the blockchain. You can retrieve comprehensive data about the contract and its attributes by providing the blockchain and the contract address.
Request Endpoint: reference
HTTP
GET /api/nonfungibles/{secretType}/{contractAddress}
Parameter
Param Type
Description
Type
Required
{secretType}
Path
Blockchain to filter by
String
✅
{contractAddress}
Path
The contract address of the specific NFT
String
✅
Example Request:
GET https://api-wallet.quantum.io/api/nonfungibles/HEDERA/0.0.2850147
Response Body:
JSON
{
"success": true,
"result": {
"name": "Digimon",
"description": null,
"address": "0.0.2850147",
"symbol": "DGM",
"media": null,
"type": "NON_FUNGIBLE_UNIQUE",
"verified": false,
"premium": false,
"categories": [],
"url": null,
"imageUrl": null
}
}
Last updated