Authentication is required via passing an API Key passed in the x-api-key header.
Available APIs
Answer API
Perform analysis and answer investment-related questions.
POST
Note: Max 5 requests per minute. In some complex questions that lead to multi-level analysis, we might take more than 60s to return an answer. We suggest to allow a timeout of 120s or above.
Request Body
{
"query": string,
// Optional. Determines if ArborChat should respond to non-investment related
// questions, even though it's not its primary focus. Default is false.
"forceAnswer": boolean,
// Optional. What kind of data should ArborChat use from when answering.
// Internet - Only use internet data. (Default)
// Private - Only use private uploaded files.
// Hybrid - Use both private uploaded files and internet data.
"knowledgeSpace": "internet" | "private" | "hybrid"
}