Get minimum wage rates by upcoming effective date
/mwf/v1/rates/effective
endpoint
The /mwf/v1/rates/effective
endpoint returns minimum wage rates by effective date range, allowing users to see upcoming effective dates.
Query Parameters
Parameter | Format | Enforcement |
---|---|---|
from | YYYY-MM-DD | Optional |
to | YYYY-MM-DD | Optional |
mwUid | String | Optional |
Sample GET Request
curl --location --request GET 'https://api.symmetry.com/mwf/v1/rates/effective?from=2025-09-01&to=2025-12-31' \
--header 'Authorization: Bearer y0urT0kenHere' \
--header 'Cookie: c00kieHere'
In this example, parameters are set to the following:
- from: 2025-09-01
- to: 2025-12-31
Sample Response
The response contains the content
array of minimum wage objects.
[
{
"mwUid": "12-1-000000000-REG-000-000",
"authority": "",
"authorityCode": 0,
"authorityType": "State",
"authorityTypeCode": 1,
"details": "",
"effectiveDate": "2025-09-30",
"industryType": "",
"industryTypeCode": 0,
"majorType": "REG",
"minorType": "",
"minorTypeCode": 0,
"note": "",
"rate": 14.0,
"stateCode": "12",
"updated": "2021-06-01T16:49:13.000"
},
{
"mwUid": "12-1-000000000-TIP-000-000",
"authority": "",
"authorityCode": 0,
"authorityType": "State",
"authorityTypeCode": 1,
"details": "",
"effectiveDate": "2025-09-30",
"industryType": "",
"industryTypeCode": 0,
"majorType": "TIP",
"minorType": "",
"minorTypeCode": 0,
"note": "",
"rate": 10.98,
"stateCode": "12",
"updated": "2021-06-01T16:49:28.000"
}
]
Updated 2 days ago