OpenSea · Schema

TokenGroupResponse

A token group representing equivalent currencies across different blockchains

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
slug string Unique slug identifier for the token group
display_name string Display name of the token group
symbol string Ticker symbol of the token group
description string Description of the token group
image_url string URL of the token group's image
opensea_url string URL to the token group page on OpenSea
currencies array Currencies in this token group
primary_currency object The primary currency for this token group
stats object Market statistics for the token group
socials object Social media links for the token group
created_at string ISO 8601 timestamp when the token group was created
updated_at string ISO 8601 timestamp when the token group was last updated
View JSON Schema on GitHub

JSON Schema

TokenGroupResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/TokenGroupResponse",
  "title": "TokenGroupResponse",
  "type": "object",
  "description": "A token group representing equivalent currencies across different blockchains",
  "properties": {
    "slug": {
      "type": "string",
      "description": "Unique slug identifier for the token group",
      "example": "eth"
    },
    "display_name": {
      "type": "string",
      "description": "Display name of the token group",
      "example": "Ethereum"
    },
    "symbol": {
      "type": "string",
      "description": "Ticker symbol of the token group",
      "example": "ETH"
    },
    "description": {
      "type": "string",
      "description": "Description of the token group"
    },
    "image_url": {
      "type": "string",
      "description": "URL of the token group's image"
    },
    "opensea_url": {
      "type": "string",
      "description": "URL to the token group page on OpenSea"
    },
    "currencies": {
      "type": "array",
      "description": "Currencies in this token group",
      "items": {
        "$ref": "#/components/schemas/TokenGroupCurrencyResponse"
      }
    },
    "primary_currency": {
      "$ref": "#/components/schemas/TokenGroupCurrencyResponse",
      "description": "The primary currency for this token group"
    },
    "stats": {
      "$ref": "#/components/schemas/TokenGroupStatsResponse",
      "description": "Market statistics for the token group"
    },
    "socials": {
      "$ref": "#/components/schemas/TokenGroupSocialsResponse",
      "description": "Social media links for the token group"
    },
    "created_at": {
      "type": "string",
      "description": "ISO 8601 timestamp when the token group was created"
    },
    "updated_at": {
      "type": "string",
      "description": "ISO 8601 timestamp when the token group was last updated"
    }
  },
  "required": [
    "created_at",
    "currencies",
    "display_name",
    "opensea_url",
    "primary_currency",
    "slug",
    "updated_at"
  ]
}