POST
/
v1
/
chatbot
/
chat-stream
curl --request POST \
  --url https://api.droxy.ai/v1/chatbot/chat-stream \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "chatbotId": "<string>",
  "conversation": [
    {
      "text": "<string>",
      "fromUser": true
    }
  ]
}'
{
  "data": {
    "text": "<string>"
  },
  "type": "<string>",
  "statusCode": 123,
  "message": "<string>",
  "error": "<string>"
}

Authorizations

x-api-key
string
header
required

Body

application/json

Response

201
application/json
Created

The response is of type object.