DOL Wage & Hour Enforcement
live GovernmentLegalJobsUS Department of Labor Wage and Hour Division investigation results — which employers were investigated, under which statute (FLSA, Service Contract Act, H-1B, FMLA, MSPA), how many employees were affected, and the back wages agreed to pay.
Tools
whd_search Search concluded US Department of Labor Wage & Hour Division enforcement cases since FY2005 — wage theft, back wages, minimum wage and overtime violations, child labour, H-1B and H-2A findings. Filter
No parameters required.
Try it
whd_employer Full Wage & Hour enforcement history for one employer, with per-case detail and aggregate violation and back-wage figures across every concluded case. Matches the employer against both the registered
No parameters required.
Try it
whd_top_backwages Rank employers by back wages owed in concluded Wage & Hour enforcement cases, optionally within one NAICS industry or state. Returns cases ordered by the recorded back-wage amount, highest first, with
No parameters required.
Try it
whd_coverage Report what the Wage & Hour enforcement dataset currently covers: its publication date, update frequency and the findings-date range of the cases returned by a sample query. Use to check how current t
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/dol-whd/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/dol-whd/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"whd_search","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("whd_search", {}); // Or ask in plain English:
const answer = await px.ask("us department of labor wage and hour division investigation results — which employers were investigated, under which statute (flsa, service contract act, h-1b, fmla, mspa), how many employees were affected, and the back wages agreed to pay");