POST
/
api
/
get_chat_response
curl --request POST \
  --url https://backend.kart.ai/api/get_chat_response/ \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <x-api-key>' \
  --data '{
  "store_url": "<string>",
  "conversation_id": 123,
  "message": "<string>"
}'
{
  "conversation_id": 123,
  "message": "<string>",
  "products": [
    {}
  ]
}

Headers

X-API-KEY
string
required

Body

application/json
store_url
string
required
message
string
required
conversation_id
integer

Response

200
application/json
Successful response
conversation_id
integer
message
string
products
object[]