Skip to main content
GET
/
v1
/
stock
/
visa-application
Visa Application (H1-B)
curl --request GET \
  --url https://api.aries.com/v1/stock/visa-application \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "beginDate": "2021-12-31",
      "caseNumber": "I-200-21364-792636",
      "caseStatus": "Certified",
      "employerName": "Apple Inc.",
      "endDate": "2024-12-30",
      "fullTimePosition": "Y",
      "h1bDependent": "No",
      "jobTitle": "Acoustics Engineer",
      "quarter": 1,
      "receivedDate": "2021-12-29",
      "socCode": "17-2141.00",
      "symbol": "AAPL",
      "visaClass": "H-1B",
      "wageLevel": "III",
      "wageRangeFrom": 165000,
      "wageUnitOfPay": "Year",
      "worksiteAddress": "One Apple Park Way",
      "worksiteCity": "Cupertino",
      "worksiteCounty": "SANTA CLARA",
      "worksitePostalCode": "95014",
      "worksiteState": "CA",
      "year": 2022
    }
  ],
  "symbol": "AAPL"
}

Query parameters

ParameterTypeRequiredDescription
symbolstringYesStock ticker symbol (e.g. AAPL).
fromstringYesFrom date YYYY-MM-DD (filter on beginDate).
tostringYesTo date YYYY-MM-DD (filter on beginDate).

Response

Success returns 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.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

symbol
string
required

Stock ticker symbol

from
string<date>
required

From date YYYY-MM-DD

to
string<date>
required

To date YYYY-MM-DD

Response

Successful response

data
object[]
symbol
string