Skip to main content
GET
/
v1
/
activity
Get the activity feed for an agent
curl --request GET \
  --url https://{host}/v2/workspaces/slug:agent-factory/webhooks/v1/activity \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "type": "<string>",
      "group": "<string>",
      "timestamp": "2023-11-07T05:31:56Z",
      "correlationId": "<string>",
      "userId": "<string>",
      "agent_id": "<string>",
      "data": {}
    }
  ],
  "total": 123,
  "page": 123,
  "limit": 123
}

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>.

Query Parameters

agent_id
string
required

Agent identifier (required).

Maximum string length: 64
groups
string

Comma-separated list of activity groups (message, error, agent_lifecycle, conversation, artifact, rating, access, share).

Maximum string length: 256
since
string

ISO timestamp lower bound.

Maximum string length: 64
until
string

ISO timestamp upper bound.

Maximum string length: 64
correlationId
string

Filter by correlationId to trace a single workflow.

Maximum string length: 128
limit
string

Page size (default 25).

page
string

Page number (1-indexed, default 1).

Response

Page of activity items.

items
object[]
total
integer
page
integer
limit
integer