Skip to content

AI-powered chat with intent classification

POST
/chat

Classifies the query intent (search, action, analysis, conversation), routes to the appropriate handler, and returns results + conversational answer. Results are displayed in the main panel.

Authorizations

BearerAuth

JWT token from login

Type
HTTP (bearer)
or
AccessToken

Personal access token. Value: Token <your-token>

Type
API Key (header: Authorization)

Request Body

application/json
JSON
{
  
"query": "string",
  
"conversation_id": "string",
  
"project_id": "string"
}

Responses

OK

application/json
JSON
{
  
"answer": "string",
  
"results": [
  
  
{
  
  
}
  
],
  
"action": {
  
},
  
"conversation_id": "string",
  
"conversation_reset": true,
  
"previous_conversation_id": "string",
  
"display_in": "string"
}

Playground

Authorization
Body

Samples

Powered by VitePress OpenAPI