curl --request GET \
--url https://api.aisa.one/apis/v1/financial/earnings \
--header 'Authorization: Bearer <token>'{
"earnings": {
"ticker": "<string>",
"report_period": "2023-12-25",
"fiscal_period": "<string>",
"currency": "<string>",
"quarterly": {
"fiscal_period": "<string>",
"currency": "<string>",
"revenue": 123,
"estimated_revenue": 123,
"revenue_surprise": "BEAT",
"earnings_per_share": 123,
"estimated_earnings_per_share": 123,
"eps_surprise": "BEAT",
"net_income": 123,
"gross_profit": 123,
"operating_income": 123,
"weighted_average_shares": 123,
"weighted_average_shares_diluted": 123,
"cash_and_equivalents": 123,
"total_debt": 123,
"total_assets": 123,
"total_liabilities": 123,
"shareholders_equity": 123,
"net_cash_flow_from_operations": 123,
"capital_expenditure": 123,
"net_cash_flow_from_investing": 123,
"net_cash_flow_from_financing": 123,
"change_in_cash_and_equivalents": 123,
"free_cash_flow": 123,
"revenue_chg": 123,
"net_income_chg": 123,
"operating_income_chg": 123,
"gross_profit_chg": 123,
"net_cash_flow_from_operations_chg": 123,
"net_cash_flow_from_investing_chg": 123,
"net_cash_flow_from_financing_chg": 123,
"free_cash_flow_chg": 123
},
"annual": {
"fiscal_period": "<string>",
"currency": "<string>",
"revenue": 123,
"estimated_revenue": 123,
"revenue_surprise": "BEAT",
"earnings_per_share": 123,
"estimated_earnings_per_share": 123,
"eps_surprise": "BEAT",
"net_income": 123,
"gross_profit": 123,
"operating_income": 123,
"weighted_average_shares": 123,
"weighted_average_shares_diluted": 123,
"cash_and_equivalents": 123,
"total_debt": 123,
"total_assets": 123,
"total_liabilities": 123,
"shareholders_equity": 123,
"net_cash_flow_from_operations": 123,
"capital_expenditure": 123,
"net_cash_flow_from_investing": 123,
"net_cash_flow_from_financing": 123,
"change_in_cash_and_equivalents": 123,
"free_cash_flow": 123,
"revenue_chg": 123,
"net_income_chg": 123,
"operating_income_chg": 123,
"gross_profit_chg": 123,
"net_cash_flow_from_operations_chg": 123,
"net_cash_flow_from_investing_chg": 123,
"net_cash_flow_from_financing_chg": 123,
"free_cash_flow_chg": 123
}
}
}Most recent earnings snapshot for a ticker — actuals plus optional estimate, surprise, and quarter-over-quarter / year-over-year change fields when available.
curl --request GET \
--url https://api.aisa.one/apis/v1/financial/earnings \
--header 'Authorization: Bearer <token>'{
"earnings": {
"ticker": "<string>",
"report_period": "2023-12-25",
"fiscal_period": "<string>",
"currency": "<string>",
"quarterly": {
"fiscal_period": "<string>",
"currency": "<string>",
"revenue": 123,
"estimated_revenue": 123,
"revenue_surprise": "BEAT",
"earnings_per_share": 123,
"estimated_earnings_per_share": 123,
"eps_surprise": "BEAT",
"net_income": 123,
"gross_profit": 123,
"operating_income": 123,
"weighted_average_shares": 123,
"weighted_average_shares_diluted": 123,
"cash_and_equivalents": 123,
"total_debt": 123,
"total_assets": 123,
"total_liabilities": 123,
"shareholders_equity": 123,
"net_cash_flow_from_operations": 123,
"capital_expenditure": 123,
"net_cash_flow_from_investing": 123,
"net_cash_flow_from_financing": 123,
"change_in_cash_and_equivalents": 123,
"free_cash_flow": 123,
"revenue_chg": 123,
"net_income_chg": 123,
"operating_income_chg": 123,
"gross_profit_chg": 123,
"net_cash_flow_from_operations_chg": 123,
"net_cash_flow_from_investing_chg": 123,
"net_cash_flow_from_financing_chg": 123,
"free_cash_flow_chg": 123
},
"annual": {
"fiscal_period": "<string>",
"currency": "<string>",
"revenue": 123,
"estimated_revenue": 123,
"revenue_surprise": "BEAT",
"earnings_per_share": 123,
"estimated_earnings_per_share": 123,
"eps_surprise": "BEAT",
"net_income": 123,
"gross_profit": 123,
"operating_income": 123,
"weighted_average_shares": 123,
"weighted_average_shares_diluted": 123,
"cash_and_equivalents": 123,
"total_debt": 123,
"total_assets": 123,
"total_liabilities": 123,
"shareholders_equity": 123,
"net_cash_flow_from_operations": 123,
"capital_expenditure": 123,
"net_cash_flow_from_investing": 123,
"net_cash_flow_from_financing": 123,
"change_in_cash_and_equivalents": 123,
"free_cash_flow": 123,
"revenue_chg": 123,
"net_income_chg": 123,
"operating_income_chg": 123,
"gross_profit_chg": 123,
"net_cash_flow_from_operations_chg": 123,
"net_cash_flow_from_investing_chg": 123,
"net_cash_flow_from_financing_chg": 123,
"free_cash_flow_chg": 123
}
}
}
Different from /earnings/press-releases: the press-releases endpoint returns full 8-K text; this one returns just the structured numbers.
curl -X GET "https://api.aisa.one/apis/v1/financial/earnings?ticker=NVDA" \
-H "Authorization: Bearer $AISA_API_KEY"