GET
/
securities
/
stock
/
financials
/
earnings
Get earnings reports for a specified stock
curl --request GET \
  --url https://openapi.ainvest.com/open/securities/stock/financials/earnings \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "period_name": "<string>",
      "period_end_date": "<string>",
      "release_date": "<string>",
      "eps_actual": 123,
      "eps_forecast": 123,
      "eps_surprise": 123,
      "revenue_actual": 123,
      "revenue_forecast": 123,
      "revenue_surprise": 123,
      "earnings_call_url": "<string>",
      "earnings_call_summary": "<string>",
      "sec_form_link": "<string>"
    }
  ],
  "status_code": 123,
  "status_msg": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your key. Get the key here

Query Parameters

ticker
string
required

US stock market ticker symbol, e.g. AAPL, TSLA, etc.

size
integer
default:5

Number of earnings reports to return, default is 5

Response

200
application/json

Successful response in standard envelope.

The response is of type object.