Get Collection Metadata

Get the collection / contract level metadata for a given contract (name, symbol, base token URI).

Get Collection Metadata

Get the collection / contract level metadata for a given contract (name, symbol, base token URI).

GET/api/collections/metadata
Query parameters
Response

Successful Response

Body
token_address*Token Address

The address of the NFT contract

nameName

The name of the NFT contract

symbolSymbol

The symbol of the NFT contract

contract_typeContract Type

The type of NFT contract standard

synced_atSynced At

Timestamp of when the contract was last synced with the node

Request
const response = await fetch('/api/collections/metadata', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "token_address": "text",
  "name": "text",
  "symbol": "text",
  "contract_type": "text",
  "synced_at": "text"
}

Last updated