latestOpenAPI 3.0.12026-07-26171200932.8 KB

69c1fb266c35

Clubs

Get club dashboard data

Rate limit: 60 requests per 60 seconds. This is the default shared quota — it is shared with every other endpoint that has no dedicated limit, so requests across those endpoints all draw from the same budget.


Retrieves club dashboard data for the authenticated user, including tier information, benefits, account manager details, offers, downgrade risk, and webinars.

get/api/v1/clubs

Headers

x-request-idstring uuid required
Example:c505fd5d-8b6a-4466-9c4f-0d7a934e6d20

A unique request identifier.

x-api-keystring password required
Example:lhgfaslk21490FAScVPkdsb53F9dNkfHG4faZSG5vfjndfcfgdssdgsdHF4663

API key for authentication.

x-user-keystring password required
Example:eyJlYW4iOiJVbnJlZ2lzdGVyZWRBcHBsaWNhdGlvbiIsImVrIjoiOE5sZ2cwcW5EUVdROUFNWGpXT2lmOWktZnpidG5KcUlqWGJ3WHJZZkpZcldrbG90ZEhvLVBjSWhQaU8xU1ZtMW84aU1WZGZqN2xWNzFjLXFxLmcybXE1dnh4Q1hUT25xaWRUaTFlcEhmVk1fIn0_

User-specific authentication key.

Response

Club dashboard data retrieved successfully

Example response

{
  "clubs": [
    {
      "name": "Silver",
      "minRealizedEquity": 5000,
      "maxRealizedEquity": 10000,
      "rank": 2
    }
  ],
  "contacts": {
    "manager": {
      "firstName": "John",
      "lastName": "Smith",
      "email": "john.smith@etoro.com",
      "calendarUrl": "https://calendly.com/etoro-club",
      "avatars": [
        {
          "url": "https://openbook-static-files.s3.amazonaws.com/images/avatoros/50x50/af.png",
          "width": 50,
          "height": 50
        }
      ]
    }
  },
  "downgradeRisk": {
    "daysUntilDowngrade": 30
  },
  "offers": {
    "currentPlayerLevelAvailableOffers": [
      {
        "id": "80",
        "displayName": "Tax Return Offer",
        "description": "Discounted assistance with preparing annual tax returns from certified tax companies in your country.",
        "status": "Claimed",
        "type": "Financial",
        "deliveryMethod": "Static",
        "minimumClubLevel": "Silver",
        "offerUrl": "https://www.etoro.com/club/offers/80",
        "offersInBundle": [
          {
            "type": "Services",
            "offerLimit": 3
          }
        ]
      }
    ],
    "nextPlayerLevelAvailableOffers": [
      {
        "id": "80",
        "displayName": "Tax Return Offer",
        "description": "Discounted assistance with preparing annual tax returns from certified tax companies in your country.",
        "status": "Claimed",
        "type": "Financial",
        "deliveryMethod": "Static",
        "minimumClubLevel": "Silver",
        "offerUrl": "https://www.etoro.com/club/offers/80",
        "offersInBundle": [
          {
            "type": "Services",
            "offerLimit": 3
          }
        ]
      }
    ],
    "staticEligibleOffers": [
      {
        "id": "80",
        "displayName": "Tax Return Offer",
        "description": "Discounted assistance with preparing annual tax returns from certified tax companies in your country.",
        "status": "Claimed",
        "type": "Financial",
        "deliveryMethod": "Static",
        "eligibleClubLevels": [
          "Gold",
          "Silver",
          "Platinum",
          "PlatinumPlus",
          "Diamond"
        ]
      }
    ]
  },
  "webinars": {
    "upcomingWebinars": [
      {
        "id": 83618564462,
        "topic": "Club Webinars with Lale Akoner and Sam North",
        "startTime": "2026-05-20T14:00:00Z",
        "joinUrl": "https://us02web.zoom.us/j/83618564462",
        "recordUrl": "https://us02web.zoom.us/rec/play/example"
      }
    ],
    "previousWebinars": [
      {
        "id": 83618564462,
        "topic": "Club Webinars with Lale Akoner and Sam North",
        "startTime": "2026-05-20T14:00:00Z",
        "joinUrl": "https://us02web.zoom.us/j/83618564462",
        "recordUrl": "https://us02web.zoom.us/rec/play/example"
      }
    ]
  }
}