Show NFT contract

Retrieve the NFT contract information based on the contract address

Get token contract

GET https://api-wallet.venly.io/api/nonfungibles/:secretType/:tokenContract

Path Parameters

NameTypeDescription

tokenContract*

string

Address of the token contract

secretType*

SecretType

The secret type (ex HEDERA)

{
    "address": "0x7227e371540cf7b8e512544ba6871472031f3335",
    "contractType": "ERC_721",
    "name": "Neon District Season One Item",
    "symbol": "NDITEM1"
}

Example

Request

https://api-wallet.venly.io/api/nonfungibles/HEDERA/0.0.2850147

Response

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

This API also supports NFT contracts that host their metadata on IPFS or store it as a base64 string in the contract itself.

pageSecretTypepageNFTContract

Last updated