Skip to main content
POST
/
ai
/
chat
Chat with AI assistant
curl --request POST \
  --url https://nimbussuite.com/api/v1/ai/chat \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "messages": [
    {
      "role": "user",
      "content": "<string>"
    }
  ],
  "scanData": {
    "domain": "<string>",
    "company": {},
    "dns": {},
    "waf": {},
    "tech": {},
    "traffic": {},
    "ports": {},
    "vulnerability": {}
  }
}
'
"<string>"

Authorizations

Authorization
string
header
required

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

Body

application/json
messages
object[]
required
scanData
object
required

Response

AI response stream

The response is of type string.