Get any NFT contract
Retrieve the NFT contract information based on the contract address.
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
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.venly.io/api/nonfungibles/HEDERA/0.0.2850147
Response Body:
{
"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
}
}
Updated 5 months ago