# 2s.io H-1B Visa Applications by Ticker

> 2s.io H-1B Visa Applications by Ticker is a paid API for AI agents from 2s.io, paid per call via x402, $0.0025/call, status unknown (last checked 2026-09-16).

Returns all H-1B and related US work-visa LCA filings for a publicly traded company by stock ticker, with job title, wage, worksite, and case status details.

## Facts

- Endpoint: GET https://2s.io/api/stocks/h1b-visas
- Price: $0.0025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-h-1b-visa-applications-by-ticker-081fbc25
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-tunzYYz-6o7FIjQhPiKr

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 2s-io-h-1b-visa-applications-by-ticker-081fbc25
```

Example prompt: Can you pull all the H-1B visa applications filed by Nvidia (ticker NVDA) over the past two years — I want to see the job titles, SOC codes, wage ranges, and worksite locations as a hiring signal?

## When to prefer this

Use this endpoint when you need to analyze H-1B or related work-visa hiring activity for a specific US public company as a headcount, talent, or strategic signal. Prefer this over general job-posting APIs when you specifically need DOL-sourced LCA records with wage and SOC data tied to a ticker symbol.

## Known failure modes

- Invalid or unrecognized ticker returns empty results or error
- Date range outside available data returns empty set
- Non-US-listed ticker returns no data
- Malformed date format (not YYYY-MM-DD) may cause parsing error
- Rate limiting or payment failure returns 402

## How this service works

US work-visa (H-1B and related) applications filed by a public company, sourced from Department of Labor LCA disclosures. Pass ticker and optionally a from/to window (YYYY-MM-DD; defaults to ~2 years); returns each application with job title, SOC code, visa class, case status, wage range, worksite city/state, employment dates, and case number. Use it as a hiring/headcount signal. Data by Finnhub.

## Output

A list of H-1B and related LCA filings for the given ticker, each record including job title, SOC code, visa class, case status, wage range, worksite city and state, employment start/end dates, and the DOL case number.

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "US-listed ticker, e.g. AAPL."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-h-1b-visa-applications-by-ticker-081fbc25/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
