For the complete documentation index, see llms.txt. This page is also available as Markdown.

'enabled_currencies' added to Operator Products List API response

Effective from: 2 June 2026


The POST /operator/generic/v2/products/list endpoint now returns an enabled_currencies array for each product, showing the currencies supported by that supplier for your operator account. This is a non-breaking, additive change — no updates to your integration are required.

What's new?

The products/list response now includes enabled_currencies — a list of currency codes enabled for each product under your operator contract.

Response structure with enabled_currencies :

[
  {
    "product_name": "Hacksaw Gaming",
    "product_code": "hsg",
    "product_logo_url": "https://cdn.hub88.io/suppliers_logos/hacksaw.svg",
    "enabled_currencies": ["USD", "EUR", "GBP"]
  },
  {
    "product_name": "Pragmatic Play",
    "product_code": "pgp",
    "product_logo_url": "https://cdn.hub88.io/suppliers_logos/pgp.svg",
    "enabled_currencies": ["USD", "EUR", "CNY"]
  }
]

The enabled_currencies values reflect what is configured in your operator contract via HubConnect. Use this field to determine which currencies are available to run games with for a given product before calling POST /operator/generic/v2/game/url.

For the full list of supported currency codes, refer to the Games API reference.

Why is it changing?

Previously, operators could only see their enabled currencies per product through HubConnect. This update exposes that information programmatically, so you can build smarter currency handling into your integration — for example, validating whether a product supports a player's currency before attempting to launch a game.

If you have any questions, please contact your Hub88 account manager or our technical support team.

Last updated

Was this helpful?