Skip to main content
GET
/
analyst-estimates
Get Analyst Estimates by Ticker
curl --request GET \
  --url https://api.aisa.one/apis/v1/financial/analyst-estimates \
  --header 'Authorization: Bearer <token>'
{
  "analyst_estimates": [
    {
      "fiscal_period": "<string>",
      "period": "<string>",
      "earnings_per_share": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

ticker
string
required

Stock ticker to get analyst estimates for

period
enum<string>
default:annual

The period type ('annual' or 'quarterly'). Defaults to 'annual'.

Available options:
annual,
quarterly

Response

Successful response with analyst estimates

analyst_estimates
object[]
required