Skip to main content
POST
https://catalystapi.superdashhq.com/api
/
v1
/
chatbot
Continue a conversation
curl --request POST \
  --url https://catalystapi.superdashhq.com/api/v1/chatbot \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "conversationId": "<string>",
  "assistantId": "<string>",
  "userIdentifier": "<string>",
  "workspaceId": "<string>",
  "question": "<string>"
}
'
{
"conversationId": "A newly created conversationId to identify the conversation. Generally, this is not required if you're using userIdentifier",
"response": "Response generated by LLM"
}

Authorizations

x-api-key
string
required
API key associated with your project/workspace

Body Parameters


Provide either conversationId or userIdentifier, but not both.
conversationId
string
A unique identifier for an existing conversation. Use this parameter to continue a specific conversation.
assistantId
string
required
The UUID associated with an assistant.
userIdentifier
string
required
A unique identifier associated with a user or customer. Use this parameter to continue a conversation based on the user’s history.
workspaceId
string
required
The UUID associated with a workspace.
question
string
required
The question to be submitted to the LLM.

Response


response
string
The response generated by the LLM.
conversationId
string
The ID associated with the conversation.
{
"conversationId": "A newly created conversationId to identify the conversation. Generally, this is not required if you're using userIdentifier",
"response": "Response generated by LLM"
}