Retrieve H1-B and permanent visa applications from the DOL for companies. Data is updated quarterly. Filter by symbol and date range (from, to) on beginDate.
Use Case: Analyze hiring and visa sponsorship trends for public companies.
| Parameter | Type | Required | Description |
|---|---|---|---|
symbol | string | Yes | Stock ticker symbol (e.g. AAPL). |
from | string | Yes | From date YYYY-MM-DD (filter on beginDate). |
to | string | Yes | To date YYYY-MM-DD (filter on beginDate). |
200 OK with a JSON object containing a data array of visa application records (e.g. caseNumber, jobTitle, employerName, wageRangeFrom, visaClass, beginDate, endDate), and symbol.
Errors: 400 when symbol or dates are missing, 401 unauthorized, 404 when no data found, 500 server error.OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.
Stock ticker symbol. Required.
"AAPL"
Start date (YYYY-MM-DD). Required.
"2024-01-01"
End date (YYYY-MM-DD). Required.
"2024-12-31"
Visa application data.
The response is of type object.