Deriving conclusions through inquiry - Chat AI
Endpoint
POST /v1/ai_chat/infer_conclusion_from_questionDescription
This API provides the ability to chat with AI by analyzing the language of user's question, and breaking it down into multiple sub-questions, summarizing relevant information. It aims to assist users in quickly obtaining key insights and conclusions related to their inquiries.
Parameters
question
String
Yes
The question posed by the user.
report_type_list
array<string>
No
A list of report types that the user can select to narrow down the search results.
start_date
String
No
The start date for the search, formatted as 'YYYY-MM-DD'
end_date
String
No
The end date for the search, formatted as 'YYYY-MM-DD'.
market
array<string>
No
A list of markets that the user can select to filter the search results.
sector_list
array<string>
No
A list of sectors that the user can select to narrow down the search results.
exchange_list
array<string>
No
A list of exchanges that the user can select to filter the search results.
country_list
array<string>
No
A list of countries that the user can select to narrow down the search results.
Options of Array Parameters:
market: [ { value: "0-1000000000", label: "Less than 1B" }, { value: "1000000000-100000000000", label: "1B - 100B" }, { value: "100000000000-500000000000", label: "100B - 500B" }, { value: "500000000000-9999999999999", label: "More than 500B" }, ]
exchange_list, country_list and sector_list options are attached as below documents:
Example Request
curl -X 'POST' \
'https://api.orbitfin.ai/v1/ai_chat/infer_conclusion_from_question' \
-H 'accept: application/json' \
-H 'X-API-KEY: Bearer YOUR_API-KEY' \
-H 'Content-Type: application/json' \
-d '{
"report_type_list": [],
"start_date": "2025-10-24",
"end_date": "2024-10-24",
"market": [],
"sector_list": [],
"exchange_list": [],
"country_list": [],
"question": "Please help me analyze the performance of Apple stock over the past year"
}'Example Response
{
"status_code": 200,
"data": {
"sub_question_list_results": [
{
"sub_question": "Analyze the price performance of Apple stock over the past one year, including key trend movements, highest and lowest prices, and percentage change from one year ago to the current date (2025-10-25).",
"sub_answer": "The provided reference text does not contain any information about Apple stock's price performance, trend movements, highest and lowest prices, or percentage change over the past year up to 2025-10-25. Therefore, I am unable to analyze or provide details on Apple stock based on the given data. If you can provide specific data or reference materials related to Apple stock performance, I would be glad to assist further."
},
{
"sub_question": "Summarize Apple’s key financial results over the past year, including quarterly revenues, net income, earnings per share (EPS), and any notable financial trends or changes.",
"sub_answer": "There is no reference text provided for me to summarize Apple's key financial results. Please provide the relevant text or document containing Apple's financial data."
},
{
"sub_question": "Identify significant news, market events, or product launches over the past year that have impacted Apple’s stock price or investor sentiment.",
"sub_answer": "I'm sorry, but I don't see any reference text provided that would allow me to identify significant news, market events, or product launches impacting Apple’s stock price or investor sentiment over the past year. Could you please provide the relevant information or documents?"
}
],
"reports_list": [],
"summary": "# Investment Research Report: Performance Analysis of Apple Inc. Stock Over the Past Year\n\n## Executive Summary\n\nThis report aims to analyze the performance of Apple Inc. stock over the past year, focusing on price movements, key financial results, and critical market events that may have influenced investor sentiment. However, based on the provided reference text, there is no available data to conduct a quantitative or qualitative analysis of Apple’s stock price trends, financial outcomes, or significant corporate developments over the past year leading up to October 25, 2025. This lack of data precludes any meaningful investment research analysis at this time.\n\n## Stock Price Performance Analysis\n\n- **Highest and Lowest Prices**: Not available\n- **Price Trends and Movements**: Not available\n- **Percentage Change over One Year**: Not available\n\nDue to the absence of specific pricing data, trend indicators, or percentage returns, no evaluation of Apple’s stock price performance can be made.\n\n## Financial Results Overview\n\n- **Quarterly Revenues**: Not provided\n- **Net Income**: Not provided\n- **Earnings per Share (EPS)**: Not provided\n- **Financial Trends**: Not provided\n\nThe unavailability of financial data means the report cannot analyze whether Apple’s financial health has improved or deteriorated over the last year.\n\n## Market Events and News Impacting Stock\n\n- No significant events, product launches, or market developments related to Apple have been identified from the provided references.\n- Consequently, no assessment can be made on how such factors may have influenced Apple’s stock price or investor sentiment.\n\n## Summary\n\nIn conclusion, the lack of any quantitative or qualitative data relevant to Apple Inc.'s stock price, financial performance, and market events over the past year means that this report cannot deliver a comprehensive investment research analysis. Investors and analysts seeking to evaluate Apple’s stock should obtain the necessary data points on stock price history, financial statements, and significant news to enable informed decision-making.\n\n*No references could be cited as the provided reference text contained no relevant information.*"
},
"message": "success"
}Error Code
400
Insufficient user balance.
401
Unauthorized access. Invalid API key.
Last updated