OpenSea · Example Payload

Get_Nfts_Batch

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Nfts_Batch 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_nfts_batch",
  "method": "POST",
  "path": "/api/v2/nfts/batch",
  "request": {
    "requestBody": {
      "identifiers": [
        {
          "chain": "ethereum",
          "contract_address": "0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D",
          "token_id": 1
        }
      ]
    }
  },
  "response": {
    "200": {
      "nfts": [
        {
          "identifier": "string",
          "collection": "string",
          "contract": "string",
          "token_standard": "string",
          "name": "string"
        }
      ]
    }
  }
}