Skip to main content
GET
/
v1
/
stock
/
visa-application
Get Visa Application (H1-B)
curl --request GET \
  --url https://api.aries.com/v1/stock/visa-application \
  --header 'Authorization: Bearer <token>'
{ "symbol": "AAPL", "asOf": "2026-01-15T12:00:00Z", "source": "demo", "records": [ { "id": "rec-001", "title": "Sample supplemental record", "category": "illustrative", "score": 0.82, "url": "https://example.com/reference/1" } ] }

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

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Query Parameters

symbol
string
required

Stock ticker symbol. Required.

Example:

"AAPL"

from
string<date>
required

Start date (YYYY-MM-DD). Required.

Example:

"2024-01-01"

to
string<date>
required

End date (YYYY-MM-DD). Required.

Example:

"2024-12-31"

Response

Visa application data.

The response is of type object.