# OFLC Employer Labor Certification Track Record

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

Returns employer labor certification statistics from public OFLC case-disclosure data, including application counts, certification/denial/withdrawal rates, wage ranges, top occupations, and below-prevailing-wage flags, queryable by employer name, SOC code, state, or fiscal year.

## Facts

- Endpoint: GET https://api.agentstools.dev/employer/laborcert
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oflc-employer-labor-certification-track-record-1767fa17
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iVWsirnF7gRhmxvQB5Eh3

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 oflc-employer-labor-certification-track-record-1767fa17
```

Example prompt: Pull up the labor certification track record for Infosys from OFLC disclosure data — I want to see their application counts, certified and denied rates, offered wage range, and whether any wages came in below prevailing for fiscal year 2023.

## When to prefer this

Use this endpoint when you need publicly sourced, structured labor certification statistics for a specific employer or occupation — especially for due diligence on employer immigration practices, competitive wage benchmarking, or workforce analytics. Prefer this over general web search when you need structured rates and wage data rather than news articles. Especially useful for recruiters, immigration attorneys, researchers, or journalists analyzing employer H-1B/PERM sponsorship patterns.

## Known failure modes

- Employer name not found in OFLC disclosure data — returns empty results or 404
- Invalid or unrecognized SOC code — may return empty result set
- Invalid state abbreviation — query parameter ignored or error returned
- Fiscal year outside available data range — no results returned
- Ambiguous employer name matching multiple entities — results may aggregate across similar names
- Payment not processed (x402) — 402 Payment Required response before data is returned

## 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 a structured summary of an employer's or occupation's OFLC labor certification history including: total application counts broken down by program (e.g. H-2B, PERM), certified/denied/withdrawn rates, offered wage range (min/max), top occupations sponsored, and a flag indicating whether any offered wages fell below the prevailing wage.

## 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/oflc-employer-labor-certification-track-record-1767fa17/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
