Chat with knowledge base
Conversation Endpoints
Chat with knowledge base
Continue an existing conversation thread with your assistant
GET
Chat with knowledge base
This endpoint lets you continue an ongoing conversation with your assistant, keeping the context from previous messages.
URL Parameters
string
required
The ID of the to continue the conversation with
Query Parameters
string
Your API key for authentication
string
required
The ID of the board to use for the conversation
string
required
The ID of the chat node within the board
string
required
The follow-up question or prompt for the AI
string
default:"claude-sonnet-5"
The AI model to use. Allowed values: claude-sonnet-5, claude-sonnet-4-6, claude-sonnet-4-5,
o3-mini, gpt-4o, grok-2-1212, gpt-4o-mini
boolean
Whether save the answer in the chat
string
default:false
Force the AI response to use plain text instead of markdown. Allowed values are “true” or
“active”. Any other value will disable plaintext.
string
default:false
Return the answer as a stream instead of a JSON. Allowed values are “true” or “active”. Any other
value will disable streaming.
string
default:false
When streaming is enabled, set this to “true” or “active” to receive credit usage information as a final chunk
in the stream. The usage chunk will be appended after the
finish event with the format:
{"type":"usage","credits_used":0.123}. This is similar to OpenAI’s stream_options.include_usage parameter.string
default:" "
Additional information to provide as context to the AI
string
Optional user identifier
string
Optional source of the request
Response
string
The AI-generated response to the prompt
number
The number of credits used for this request
number
The total number of credits remaining in your account
This endpoint is functionally equivalent to the POST /api/conversation/ endpoint,
but allows for easier testing and integration in contexts where POST requests are difficult to
implement.
