curl --request GET \
--url https://{host}/v2/workspaces/slug:ai-governance-v2/webhooks/v1/observability/{workspaceId}/feed \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{host}/v2/workspaces/slug:ai-governance-v2/webhooks/v1/observability/{workspaceId}/feed', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://{host}/v2/workspaces/slug:ai-governance-v2/webhooks/v1/observability/{workspaceId}/feed"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"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
}{
"error": "<string>",
"message": "<string>",
"details": {}
}{
"error": "<string>",
"message": "<string>",
"details": {}
}{
"error": "<string>",
"message": "<string>",
"details": {}
}{
"error": "<string>",
"message": "<string>",
"details": {}
}Get the real-time event feed for a workspace
Returns runtime events (interactions, errors, failed fetches, executions) for the requested window with filtering, pagination, and per-type breakdown.
Requires observability:read permission. Rate-limited to 100
calls per minute.
curl --request GET \
--url https://{host}/v2/workspaces/slug:ai-governance-v2/webhooks/v1/observability/{workspaceId}/feed \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{host}/v2/workspaces/slug:ai-governance-v2/webhooks/v1/observability/{workspaceId}/feed', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://{host}/v2/workspaces/slug:ai-governance-v2/webhooks/v1/observability/{workspaceId}/feed"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"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
}{
"error": "<string>",
"message": "<string>",
"details": {}
}{
"error": "<string>",
"message": "<string>",
"details": {}
}{
"error": "<string>",
"message": "<string>",
"details": {}
}{
"error": "<string>",
"message": "<string>",
"details": {}
}Authorizations
User-bound credential carrying an identity: either a session JWT
or a user access token (at:*) generated from the user settings UI.
Send as Authorization: Bearer <token>.
Org API keys (iak_*) are not accepted here - they carry
no user identity. Use the x-prismeai-api-key header instead
(see OrgApiKeyAuth).
Path Parameters
Workspace identifier.
64^[a-zA-Z0-9_-]+$Query Parameters
How far back to look (default 5).
Preset window. Wins over minutes. Use dateStart/dateEnd
(or start/end) for explicit ranges.
1h, 24h, 7d, 30d 83232Legacy alias mapped to a single scope; ignored when scopes is set.
32Comma-separated scopes to surface. Supported values:
interactions, errors, failed_fetches, executions.
Default: interactions,errors,failed_fetches.
128Free-text search forwarded as simple_query_string.
256Lower bound (ms, inclusive) on payload.duration.
16Upper bound (ms, inclusive) on payload.duration.
16Filter on source.userId (single id).
128Comma-separated list of correlation ids (terms filter).
4096Max events (default 50).
Page index (0-based, default 0).
Filter by automation slug.
128Response
Feed payload.
Hide child attributes
Hide child attributes
error, execution, interaction, event Was this page helpful?