Welcome to the AI Analyst API! This API provides fundamental analysis data for a given stock ticker. Simply send a GET request to the endpoint with your API key and the stock ticker to retrieve the data. More endpoints coming very soon.
Retrieving data sometimes may take up to 60 seconds, so be patient and don't overuse it.
/api/v1/fundamental-analysis
api_key (required): Your API key for authenticationticker (required): The stock ticker for which you want to retrieve the fundamental analysisGET /api/v1/fundamental-analysis?api_key=qwerty&ticker=AAPL
{
"fundamental-analysis": "Apple Inc. (AAPL) has been making h...,
"symbol": "AAPL"
}
If the API key is invalid, the following response will be returned:
{
"error": "Invalid API key"
}
If the ticker is not provided, the following response will be returned:
{
"error": "Ticker not provided"
}