# Game List Latest Filter Available in Operator Games API

**Effective from: 29 April 2026**

***

The [`POST /operator/generic/v2/game/list`](/developer-docs/operator-api-reference/games-api.md#post-operator-generic-v2-game-list) endpoint now accepts an optional `latest` parameter, allowing you to retrieve only the games that were added or modified today. This makes it easier to keep your game catalogue in sync without fetching your entire game list on every poll.

### **What's new?**

**`latest` parameter on `/game/list`**

A new optional boolean field, `latest`, is now available on the game list request. When set to `true`, the endpoint returns only games whose `game` entity was updated on the current UTC calendar day (from `00:00:00` to `23:59:59` UTC).

**Example:** Your operator has 100 games available. On a given day, 4 games are added or modified. Sending `"latest": true` returns only those 4 games, not the full 100.

If `latest` is omitted from the request, the endpoint behaves exactly as before and returns your full game list.

#### **Behaviour rules**

* If `latest` is not sent, the full game list is returned (no change to existing behaviour).
* If `latest: true`  only games updated today (UTC) are returned.
* If no games match,  `200 OK` with an empty list is returned
* `latest` and `release_date` cannot be used together in the same request.

#### **Validation errors**

| Scenario                                 | HTTP status | Error message                                               |
| ---------------------------------------- | ----------- | ----------------------------------------------------------- |
| `latest` is not a boolean                | `400`       | `"Parameter latest must be a boolean"`                      |
| `latest` and `release_date` both present | `400`       | `"Parameter latest can't be used with release_date filter"` |

#### **Key use-cases for this update**

* **Efficient catalogue syncing** — Poll for only the games that changed today rather than fetching your full catalogue. Useful for scheduled daily sync jobs that keep your game listing up to date.
* **Awareness of new and updated content** — Quickly surface games added or modified by suppliers since UTC midnight, so newly available titles appear on your platform faster.
* **Full backward compatibility** — Existing integrations that do not send `latest` are completely unaffected. No request contract changes.

If you have any questions or need support updating your integration, please contact your Hub88 account manager or Hub88's 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/april-2026/game-list-latest-filter-available-in-operator-games-api.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.
