# LaborWage Employer OFLC Labor-Certification Lookup

> LaborWage Employer OFLC Labor-Certification Lookup is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns an employer's labor-certification track record from OFLC public case-disclosure data, including application counts, certification/denial/withdrawal rates, offered-wage ranges, top occupations, and a below-prevailing-wage flag.

## Facts

- Endpoint: GET https://payai.agentstools.dev/employer/laborcert
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/laborwage-employer-oflc-labor-certification-lookup-6fc8391f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_68YT3icoNW99EVEdHf8C5

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability laborwage-employer-oflc-labor-certification-lookup-6fc8391f
```

Example prompt: Pull up the OFLC labor-certification track record for Infosys — I want to see their certification, denial, and withdrawal rates, the offered wage range, and whether they've been flagged for paying below the prevailing wage, for fiscal year 2023.

## When to prefer this

Use this endpoint when you need verifiable, government-sourced labor-certification statistics for a specific employer or occupation — especially for immigration compliance research, job-seeker due diligence on H-1B sponsors, wage benchmarking against prevailing wages, or regulatory analysis. Prefer this over general web search when you need structured, quantitative OFLC disclosure data with certification/denial breakdowns rather than anecdotal employer information.

## Known failure modes

- Employer name not found in OFLC data — returns empty result or 404
- Ambiguous employer name matches multiple entities — may return aggregated or partial results
- Invalid SOC code format — returns validation error
- Invalid or unsupported fiscal year — returns error or empty dataset
- State code not recognized — returns validation error
- No data available for the requested combination of filters — returns empty result

## How this service works

Employer labor-certification track record from public OFLC case-disclosure data: application counts by program, certified, denied and withdrawn rates, offered-wage range, top occupations and a flag for offered wages below the prevailing wage. Query by employer name or by SOC, state and fiscal year.

## Output

Returns structured data including: total application counts broken down by program (e.g. H-1B, PERM), certification rate, denial rate, withdrawal rate, offered wage range (min/max), a ranked list of top sponsored occupations, and a boolean flag indicating whether any offered wages fall below the prevailing wage for that occupation and location.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "soc": {
       "type": "string",
       "description": "SOC occupation code filter"
      },
      "state": {
       "type": "string",
       "description": "Two-letter worksite state filter"
      },
      "employer": {
       "type": "string",
       "description": "Employer name"
      },
      "fiscal_year": {
       "type": "string",
       "description": "Federal fiscal year filter"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/laborwage-employer-oflc-labor-certification-lookup-6fc8391f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
