Skip to main content
Opik Documentation

Search documentation

Type to search this documentation.

Get recent activity for a project

GET/v1/private/projects/{projectId}/activitiesGet recent activity for a project

Returns the most recent activity items across all entity types for a project, sorted by date descending.

Parameters

projectIdstring · uuidpathrequired
pageinteger · int32query

default 1 · minimum 1

sizeinteger · int32query

default 10 · maximum 100 · minimum 1

Responses

200Recent activity pageapplication/json
objectRecentActivityPage_Public
contentarray of object
Show child attributes
Show array items
created_atstring · date-time
created_bystring
idstring · uuid
namestring
resource_idstring · uuid
typestring

one of "trace_daily", "experiment", "dataset_version", "test_suite_version", "alert_event", "optimization", "prompt_version"

pageinteger · int32
sizeinteger · int32
totalinteger · int64
Example response
{
  "content": [
    {
      "created_at": "2026-06-09T00:00:00Z",
      "created_by": "string",
      "id": "00000000-0000-0000-0000-000000000000",
      "name": "string",
      "resource_id": "00000000-0000-0000-0000-000000000000",
      "type": "alert_event"
    }
  ],
  "page": 0,
  "size": 0,
  "total": 0
}
400Bad Requestapplication/json
objectErrorMessage_Public
codeinteger · int32
detailsstring
messagestring
Example response
{
  "code": 0,
  "details": "string",
  "message": "string"
}
500Internal Server Errorapplication/json
objectErrorMessage_Public
codeinteger · int32
detailsstring
messagestring
Example response
{
  "code": 0,
  "details": "string",
  "message": "string"
}
Documentation menu