> ## Documentation Index
> Fetch the complete documentation index at: https://docs.symmetry.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve recent minimum wage rate updates

> List recently changed rates with /mwf/v1/id and updatedSince. Covers mwUid wildcards, pageNumber and pageSize pagination, and totalElements handling.

Minimum wage rates are updated throughout the country on an ongoing basis as legislation is passed within different jurisdictions. After Symmetry confirms a new or updated rate, Minimum Wage Finder publishes the update.

## View recent minimum wage changes

To view recently updated rates, call the `/mwf/v1/id` endpoint and set the `updatedSince` query parameter to the desired timeframe.

The `mwUid` parameter accepts a wildcard `*` in any position, so `04-*-*-*-*-*` matches every rate in Arizona. See [Minimum wage unique IDs](/mwf/core-concepts/mwuid-elements).

### Example 1: View all recent rate changes

To see all rate changes across the US and its territories since 1 September 2022, set the following query parameters:

* `mwUid=*`
* `pageNumber=0`
* `pageSize=10`
* `updatedSince=2022-09-01`

Production URL:

```text theme={null}
https://api.symmetry.com/mwf/v1/id?mwUid=*&pageNumber=0&pageSize=10&updatedSince=2022-09-01
```

### Example 2: Recent rate changes for Arizona

To see all minimum wage rate changes for the state of Arizona since 1 September 2022, set the following query parameters:

* `mwUid=04-*-*-*-*-*`
* `pageNumber=0`
* `pageSize=10`
* `updatedSince=2022-09-01`

Production URL:

```text theme={null}
https://api.symmetry.com/mwf/v1/id?mwUid=04-*-*-*-*-*&pageNumber=0&pageSize=10&updatedSince=2022-09-01
```

<Note>
  Increase `pageSize` or step through `pageNumber` when `totalElements` is greater than the page size, or you will see only the first page of changes.
</Note>

To do the same in Portal, see [View recent minimum wage rate updates](/mwf/portal/recent-rate-updates).
