DOL Wage & Hour Enforcement

live GovernmentLegalJobs

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.

4 tools
0ms auth
free tier 50 calls/day

Tools

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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/dol-whd/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("whd_search", {});
ask_pipeworx
// 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");