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

> Retrieve recently updated minimum wage rates via API. Covers `/prp/v1/minimumwage/id` with `updatedSince`, filtering by timeframe, and reading `mwUid` rate changes.

Minimum wage rates are updated throughout the country on an ongoing basis as legislation is passed within different jurisdictions. As soon as Symmetry confirms a new or updated rate, Payroll Point is updated in real time.

For minimum wage in Payroll Point generally, see [Wage Rates overview](/prp/portal/wage-rates).

## View recent minimum wage changes

To view recently updated rates, call the `/prp/v1/minimumwage/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](/prp/core-concepts/mw-uid-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/prp/v1/minimumwage/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/prp/v1/minimumwage/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](/prp/portal/recent-mw-updates).
