curl --request POST \
--url https://instance.prod.onboardapp.io/v1/alerts/{alert_token}/ai-research \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"research_type": "standard"
}
'{
"data": {
"status": "processing",
"estimated_completion": "2023-11-07T05:31:56Z"
},
"meta": {
"request_id": "req_9k4m2n1p3q",
"page": {
"cursor": "<string>",
"has_more": true
}
}
}Initiate AI-powered research for an alert. The AI analyzes available data, performs open-source intelligence gathering, and produces a structured assessment with confidence scoring and recommended actions.
AI research runs asynchronously. Poll the GET endpoint or await the webhook for results.
curl --request POST \
--url https://instance.prod.onboardapp.io/v1/alerts/{alert_token}/ai-research \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"research_type": "standard"
}
'{
"data": {
"status": "processing",
"estimated_completion": "2023-11-07T05:31:56Z"
},
"meta": {
"request_id": "req_9k4m2n1p3q",
"page": {
"cursor": "<string>",
"has_more": true
}
}
}Project-scoped API key for server-to-server authentication. Obtain keys from the Zenoo dashboard under Project Settings > API Keys. Staging and production environments use separate keys.
Unique key for idempotent request handling. If a request with the same key was already processed within the last 24 hours, the original response is returned.
Alert token.
Research depth. standard provides quick analysis (30-60s).
deep performs comprehensive investigation (2-5 minutes).
standard, deep