Skip to main content
GET
/
v1
/
observability
/
{workspaceId}
/
feed
Get the real-time event feed for a workspace
curl --request GET \
  --url https://{host}/v2/workspaces/slug:ai-governance-v2/webhooks/v1/observability/{workspaceId}/feed \
  --header 'Authorization: Bearer <token>'
{
  "workspaceId": "<string>",
  "filter": "<string>",
  "since": "2023-11-07T05:31:56Z",
  "stats": {
    "totalEvents": 123,
    "uniqueUsers": 123,
    "throughputPerMinute": 123
  },
  "typeBreakdown": [
    {
      "type": "<string>",
      "count": 123
    }
  ],
  "events": [
    {
      "id": "<string>",
      "timestamp": "2023-11-07T05:31:56Z",
      "type": "<string>",
      "automation": "<string>",
      "correlationId": "<string>",
      "userId": "<string>",
      "category": "error",
      "duration": 123,
      "error": {},
      "message": "<string>",
      "summary": "<string>",
      "trigger": "<string>",
      "emittedEvent": "<string>"
    }
  ],
  "page": 123,
  "hasMore": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.prisme.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

User session JWT or instance API key (iak_*). Send as Authorization: Bearer <token>.

Path Parameters

workspaceId
string
required

Workspace identifier.

Maximum string length: 64
Pattern: ^[a-zA-Z0-9_-]+$

Query Parameters

minutes
string

How far back to look (default 5).

period
enum<string>

Preset window. Wins over minutes. Use dateStart/dateEnd (or start/end) for explicit ranges.

Available options:
1h,
24h,
7d,
30d
Maximum string length: 8
dateStart
string<date-time>
Maximum string length: 32
dateEnd
string<date-time>
Maximum string length: 32
filter
string

Legacy alias mapped to a single scope; ignored when scopes is set.

Maximum string length: 32
scopes
string

Comma-separated scopes to surface. Supported values: interactions, errors, failed_fetches, executions. Default: interactions,errors,failed_fetches.

Maximum string length: 128
text
string

Free-text search forwarded as simple_query_string.

Maximum string length: 256
minDuration
string

Lower bound (ms, inclusive) on payload.duration.

Maximum string length: 16
maxDuration
string

Upper bound (ms, inclusive) on payload.duration.

Maximum string length: 16
userId
string

Filter on source.userId (single id).

Maximum string length: 128
correlationIds
string

Comma-separated list of correlation ids (terms filter).

Maximum string length: 4096
limit
string

Max events (default 50).

page
string

Page index (0-based, default 0).

automation
string

Filter by automation slug.

Maximum string length: 128

Response

Feed payload.

workspaceId
string
filter
string
since
string<date-time>
stats
object
typeBreakdown
object[]
events
object[]
page
integer
hasMore
boolean