OpenSea · Schema

ChainListResponse

List of supported blockchains

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
chains array List of supported chains
View JSON Schema on GitHub

JSON Schema

ChainListResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/ChainListResponse",
  "title": "ChainListResponse",
  "type": "object",
  "description": "List of supported blockchains",
  "properties": {
    "chains": {
      "type": "array",
      "description": "List of supported chains",
      "items": {
        "$ref": "#/components/schemas/ChainResponse"
      }
    }
  },
  "required": [
    "chains"
  ]
}