Skip to main content
POST
/
api
/
conversations
Create Conversation
curl --request POST \
  --url https://your-domain.com/api/conversations \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "",
  "mode": "auto",
  "agent_id": "<string>",
  "model_name": "<string>"
}
'
{
  "success": true,
  "data": "<unknown>",
  "error": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.fim.ai/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
title
string
default:""
mode
enum<string>
default:auto
Available options:
react,
dag,
auto
agent_id
string | null
model_name
string | null

Response

Successful Response

success
boolean
default:true
data
any
error
string | null