New endpoint: Get Enabled Products List

Operator API

Effective from: July 16, 2025


What’s new?

We’ve added a new endpoint to the Operator API that allows operators to retrieve the list of all enabled products (game suppliers) available within their game catalogue - Get a List of Products.

Endpoint Structure

Base URL: POST /operator/generic/v2/products/list

This endpoint provides the necessary product codes for use with other endpoints—such as filtering games using product_code .

How it works?

Request:

POST /operator/generic/v2/products/list
Headers:
  X-Hub88-Signature: <signature>

Request body:

{
  "operator_id": 1
}

Response:

[
  {
    "product_name": "Hacksaw Gaming",
    "product_code": "hsg",
    "product_logo_url": "https://cdn.hub88.io/suppliers_logos/hacksaw.svg"
  }
]

Key details

  • The request must include a valid X-Hub88-Signature that matches the given operator_id.

  • Only enabled products (i.e., currently active in the operator’s game catalogue) will be returned in the response.

  • Disabled products will be excluded automatically.

  • The product_code returned can be used with /operator/generic/v2/game/list to query games specific to a supplier.

Why is it useful?

This new functionality ensures operators can reliably fetch the exact set of products enabled for them and use this data to further refine game queries, enhance UI categorisation, or streamline backoffice operations.

For further questions or support, please contact your Hub88 account manager or our technical support team.

Last updated

Was this helpful?