Skip to main content
GET
/
analyst-estimates
Analyst Estimates
curl --request GET \
  --url https://api.aisa.one/apis/v1/financial/analyst-estimates \
  --header 'Authorization: Bearer <token>'
{
  "analyst_estimates": [
    {
      "fiscal_period": "2023-12-25",
      "period": "annual",
      "revenue": 123,
      "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

The ticker to get analyst estimates for.

period
enum<string>

The period to get analyst estimates for. Use the /analyst-estimates/periods endpoint to get a list of available periods. Defaults to 'annual'.

Available options:
annual,
quarterly
limit
integer

The maximum number of estimates to return (max 3 for annual, 12 for quarterly).

Response

Analyst estimates response

analyst_estimates
object[]