OpenSea · Schema
TokenGroupSocialsResponse
Social media links for a token group
NFTMarketplaceWeb3BlockchainTradingDigital Assets
Properties
| Name | Type | Description |
|---|---|---|
| website | string | The token group's website URL |
| string | The token group's Twitter/X handle | |
| discord | string | The token group's Discord invite URL |
| telegram | string | The token group's Telegram identifier |
| coinmarketcap | string | CoinMarketCap listing URL |
| coingecko | string | CoinGecko listing URL |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://opensea.io/schemas/TokenGroupSocialsResponse",
"title": "TokenGroupSocialsResponse",
"type": "object",
"description": "Social media links for a token group",
"properties": {
"website": {
"type": "string",
"description": "The token group's website URL"
},
"twitter": {
"type": "string",
"description": "The token group's Twitter/X handle"
},
"discord": {
"type": "string",
"description": "The token group's Discord invite URL"
},
"telegram": {
"type": "string",
"description": "The token group's Telegram identifier"
},
"coinmarketcap": {
"type": "string",
"description": "CoinMarketCap listing URL"
},
"coingecko": {
"type": "string",
"description": "CoinGecko listing URL"
}
}
}