Show NFT contract

Retrieve the NFT contract information based on 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
    }
}