Tickers Review
Generate Tickers Review
GET https://api.finalle.ai/tickers_review
Get an AI generated, real-time summarized review of tickers latest events.
Path Parameters
api_key*
String
Your API key
tickers*
String
A comma separated list of tickers to review, maximum is 10 tickers. At least one ticker must be provided.
review_length
String (Enum)
A parameter controlling the generated review length. Can be either 'short' or 'long'. Defaults to 'short'.
On success, returns the tickers review for the tickers provided.
{
"data": {
"non_supported_input_tickers": "list [string]", // Strings list containing non supported input tickers
"reviews": [{ // A list of tickers reviews
"review": "string", // The review for the ticker
"ticker": "string" // The ticker that is reviewd
}],
"summary": "string" // Summarizing review for all tickers
},
"request_id": "YOUR_REQUEST_ID",
"result": "success"
}Example
For the request:
https://api.finalle.ai/tickers_review?api_key=*&tickers=MSFT,TSLA,AAPL&review_length=long
The output is:
{
"data": {
"non_supported_input_tickers": [],
"reviews": [
{
"review": "* MSFT 5 days price change: +0.03%\n* Microsoft showcases Phi-3 AI model for conversational AI on smartphones.\n* Nadella emphasizes practicality of AI, promoting balanced approach for innovation.\n* Microsoft partners with UAE's G42 for AI tech transfer, raising security concerns.\n* Analysts confident in Microsoft's AI integration, optimistic price targets set.",
"ticker": "MSFT"
},
{
"review": "* TSLA 5 days price change: -3.99%\n* Tesla's upcoming Robotaxi event generates market speculation and stock price predictions.\n* Glass Lewis advises against $56B Tesla pay plan for CEO Musk.\n* Tesla reduces Model Y production in China due to decreased demand.\n* Elon Musk opposes EV tax breaks and Chinese import tariffs for fairness.",
"ticker": "TSLA"
},
{
"review": "* AAPL 5 days price change: -0.10%\n* Nvidia's market value approaches Apple's, with a 6% stock surge.\n* Apple prepares to launch iOS 18 with eye-tracking, music haptics at WWDC 2024.\n* Apple's iPhone shipments in China surged by 52% due to discounts.\n* Apple resolves photo reemergence bug with iOS update after database corruption.",
"ticker": "AAPL"
}
],
"summary": "Recent data showed a slight increase in Initial Jobless Claims compared to the estimated 218K, while GDP Growth Rate for Q1 came in at 1.3%. Looking ahead, investors are eyeing the upcoming Fed Interest Rate Decision, FOMC Economic Projections, and CPI data for May, along with the Unemployment Rate report. The 5 days change for S&P 500 index is -0.80%, whereas Nasdaq index experienced a -4.47% change.\n\nIn summary, the latest news surrounding your portfolio includes:\n\n- Microsoft (MSFT) showcased its Phi-3 AI model for conversational AI on smartphones, emphasizing the practicality of AI and promoting a balanced approach for innovation. The company also partnered with UAE's G42 for AI tech transfer, raising security concerns. Analysts remain confident in Microsoft's AI integration, setting optimistic price targets.\n\n- Tesla (TSLA) experienced a decrease in stock price, with upcoming speculation surrounding its Robotaxi event. Glass Lewis advised against a $56B pay plan for CEO Elon Musk, while Tesla reduced Model Y production in China due to decreased demand. Musk also expressed opposition to EV tax breaks and Chinese import tariffs for fairness.\n\n- Apple (AAPL) saw a slight decrease in stock price, with Nvidia's market value approaching its own. Apple is preparing to launch iOS 18 with features like eye-tracking and music haptics, and its iPhone shipments in China surged by 52% due to discounts. The company also resolved a photo reemergence bug with an iOS update after database corruption.\n\nPlease note that this summary is provided for informational purposes only and does not constitute financial advice."
},
"request_id": "YOUR_REQUEST_ID",
"result": "success"
}Invalid values were supplied for the API request.
Example:
For the request:
The output will have 400 response status code with the following response:
Something went wrong on our server.
The output will have 500 response status code with the following response:
Last updated