Retrieve Contract Metadata

How to retrieve the metadata of an NFT contract/collection.

Request Endpoint: reference

GET /api/v2/contracts/{secretType}/{contractAddress}/metadata
ParameterParam TypeDescriptionData TypeMandatory
{secretType}PathThe blockchain of the contract.String
{contractAddress}PathThe contract address.String

Example Request:

GET /api/v2/contracts/MATIC/0xfc5500094af58ded18e92da5ff1dd7cc84b74633/metadata

Response Body:

{
    "success": true,
    "result": {
        "name": "NFT Collection",
        "description": "Sample description",
        "symbol": "NFTC",
        "externalUrl": "www.venly.io",
        "image": "https://techround.co.uk/wp-content/uploads/2022/01/Venly-logo.png",
        "media": [],
        "external_link": "www.venly.io"
    }
}