Skip to main content
GET
/
v1
/
activity
List customer activity events
curl --request GET \
  --url https://api.runtools.ai/v1/activity \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "events": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "orgId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "actorUserId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "actorType": "user",
        "resourceType": "<string>",
        "resourceId": "<string>",
        "eventType": "<string>",
        "severity": "info",
        "status": "<string>",
        "title": "<string>",
        "summary": "<string>",
        "attributes": {},
        "threadId": "<string>",
        "agentRunId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "sandboxId": "<string>",
        "workspaceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "toolSlug": "<string>",
        "installableAgentInstallId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "runmeshNodeId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "codeExecutionId": "<string>",
        "createdAt": "2023-11-07T05:31:56Z"
      }
    ]
  },
  "hasMore": true,
  "nextCursor": "<string>"
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

WorkOS session token or RunTools API key (rt_live_* / rt_test_*). Used in Authorization: Bearer <token> header.

Query Parameters

resource_type
enum<string>
Available options:
sandbox,
agent,
workspace,
thread,
tool,
installable_agent_install,
runmesh_device,
code_execution
resource_id
string
event_type
string
severity
enum<string>
Available options:
info,
warning,
error,
success
status
string
actor_user_id
string<uuid>
thread_id
string
agent_run_id
string<uuid>
sandbox_id
string
workspace_id
string<uuid>
tool_slug
string
installable_agent_install_id
string<uuid>
code_execution_id
string
runmesh_node_id
string<uuid>
since
string<date-time>
until
string<date-time>
limit
integer

Maximum number of rows to return.

Required range: 1 <= x <= 500
cursor
string

Opaque pagination cursor returned by a prior page.

Response

200 - application/json

Events.

data
object
hasMore
boolean
nextCursor
string | null