Vinci NFT API
SDKDocument Hub
  • Introduction
  • Get Started
  • NFT API Endpoints
    • Get NFTs By Wallet
    • Get NFTs By Contract
    • Search NFTs
    • Get NFT Metadata
    • Get NFT Floor Price
    • Get Owners By Contract
    • Get Owners By Token Id
    • Get Collections By Wallet
    • Get Collection Metadata
    • Get Transfers By Wallet
    • Get Transfers By Contract
    • Get Transfers By Block
    • Get Transfers From A Block To A Block
Powered by GitBook
On this page
  1. NFT API Endpoints

Get Collection Metadata

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

PreviousGet Collections By WalletNextGet Transfers By Wallet

Last updated 2 years ago

Get Collection Metadata

get

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

Query parameters
addressstringRequired

The address

chainall ofRequired

The chain to query

string · enumOptional

An enumeration.

Possible values:
Responses
200
Successful Response
application/json
404
ErrorMessage
application/json
422
HTTPValidationError
application/json
get
GET /api/collections/metadata?address=text&chain=eth HTTP/1.1
Host: 
Accept: */*
{
  "token_address": "text",
  "name": "",
  "symbol": "",
  "contract_type": "text",
  "synced_at": ""
}