Skip to main content
POST
/
v1
/
chat
/
query
Query Intelligence Canvas
curl --request POST \
  --url https://api.scoutline.com/v1/chat/query \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "query": "<string>",
  "context": [
    "<string>"
  ]
}
'
{
  "answer": "<string>",
  "citations": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
query
string
context
string[]

Response

200 - application/json

Canvas intelligence response

answer
string
citations
string[]