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>"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>"Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
AI response stream
The response is of type string.
Was this page helpful?