Api Reference
POST Search Plan Run
plan_idstring
summarization?object
include_raw_data?boolean
Default
true
include_planning?boolean
Default
false
Response Body
curl -X POST "https://api.kirha.ai/chat/v1/search/plan/run" \ -H "Content-Type: application/json" \ -d '{ "plan_id": "string" }'
{
"id": "string",
"summary": "string",
"raw_data": [
{
"step_id": "string",
"tool_name": "string",
"parameters": {},
"output": {}
}
],
"planning": {
"status": "success",
"steps": [
{
"id": "string",
"tool_name": "string",
"parameters": {},
"reasoning": "string"
}
],
"reason": "string"
},
"usage": {
"estimated": 0,
"consumed": 0
},
"account": {
"balance": 0,
"balance_timestamp": "string"
}
}