OpenSea · Example Payload

Get_Nft_Collection

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Nft_Collection is an example object payload from OpenSea, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathrequestresponse

Example Payload

Raw ↑
{
  "operationId": "get_nft_collection",
  "method": "GET",
  "path": "/api/v2/chain/{chain}/contract/{address}/nfts/{identifier}/collection",
  "request": {
    "parameters": {
      "chain": "string",
      "address": "string",
      "identifier": "string"
    }
  },
  "response": {
    "200": {
      "collection": "string",
      "name": "string",
      "description": "string",
      "image_url": "string",
      "banner_image_url": "string"
    }
  }
}