Batch Brief
Brief
Batch Brief
Get combined radar and signal events for multiple organizations in one call
GET
Batch Brief
The batch brief endpoint is designed for AI agents and dashboards that monitor multiple organizations. Instead of making 2N calls (N radar + N signal), make 1 call for up to 25 organizations.
Invalid IDs within the batch return inline errors (not a 404), so one bad ID doesn’t fail the whole request.
Batch brief event objects follow the same canonical event contract as Radar, Signal, and Search:
Batch brief is a higher-tier endpoint. Use
/v1/brief for single-organization workflows when batch access is not available on your plan.Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
ids | string | Yes | Comma-separated organization IDs (max 25) |
since | string | Yes | ISO 8601 timestamp — only events after this time |
limit | integer | No | Max events per type per org (default 5, max 10) |
compact | boolean | No | Omit evidence, bullets, owners, and participants (legacy compatibility fields are also omitted) |
Request
cURL
Response (200)
Errors
| Status | Error | Cause |
|---|---|---|
| 400 | ids parameter is required | Missing org IDs |
| 400 | No valid organization IDs provided | All IDs unparseable |
| 400 | Maximum 25 organization IDs per batch request | Too many IDs |
| 400 | since parameter is required | Missing time filter |
summarybulletsownersparticipantsevidencelatestEvidenceTimestampsignificance
Agent Usage Pattern
Python