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}
ParameterParam TypeDescriptionTypeRequired
{secretType}PathBlockchain to filter byString✅
{contractAddress}PathThe contract address of the specific NFTString✅

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 } }

Did this page help you?