# 'enabled\_currencies' added to Operator Products List API response

**Effective from**: 2 June 2026

***

The [`POST /operator/generic/v2/products/list`](/developer-docs/operator-api-reference/games-api.md#get-a-list-of-products) 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` :

```json
[
  {
    "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](https://docs.hub88.io/developer-docs/operator-api-reference/games-api#get-a-game-url).

### **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.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.hub88.io/api-changelog/june-2026/enabled_currencies-added-to-operator-products-list-api-response.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
