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

Authorizations

x-api-key
string
header
required

Body

application/json
chatbotId
string
required

The chatbot's id.

conversation
object[]
required

An array of messages.

Response

201
application/json
Created
text
string
required

The chatbot's response.