OpenSea · Example Payload

Get_Token_Groups

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Get_Token_Groups 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_token_groups",
  "method": "GET",
  "path": "/api/v2/token-groups",
  "request": {
    "parameters": {
      "limit": 0,
      "cursor": "string"
    }
  },
  "response": {
    "200": {
      "token_groups": [
        {
          "slug": "eth",
          "display_name": "Ethereum",
          "symbol": "ETH",
          "description": "string",
          "image_url": "string"
        }
      ],
      "next": "string"
    }
  }
}