OpenSea · Schema

BatchTokensRequest

Request body for batch token retrieval by contract identifiers

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
contracts array List of token contract identifiers to retrieve
View JSON Schema on GitHub

JSON Schema

BatchTokensRequest.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/BatchTokensRequest",
  "title": "BatchTokensRequest",
  "type": "object",
  "description": "Request body for batch token retrieval by contract identifiers",
  "properties": {
    "contracts": {
      "type": "array",
      "description": "List of token contract identifiers to retrieve",
      "items": {
        "$ref": "#/components/schemas/TokenContractInput"
      }
    }
  },
  "required": [
    "contracts"
  ]
}