POST
/
api
/
v1
/
ask_camel
curl --request POST \
  --url https://api.camelai.com/api/v1/ask_camel \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "message": "<string>",
  "source_id": 123,
  "knowledge_base_entries": [
    "<string>"
  ],
  "reference_queries": [
    {
      "query": "<string>",
      "title": "<string>"
    }
  ],
  "stream": false
}'
{
  "message": "<any>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Schema-only serializer for ask_camel: provide exactly one of source_id (existing connection ID) or source (inline connection configuration).

Response

200
application/json

Response serializer for ask_camel endpoint.