Skip to main content
GET
/
v1
/
records
/
{record_id}
/
timeline
Get record timeline
curl --request GET \
  --url https://app.nex.ai/api/developers/v1/records/{record_id}/timeline \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "id": "5000",
      "resource_type": "task",
      "resource_id": "800",
      "event_type": "created",
      "event_payload": {
        "task": {
          "id": "800",
          "title": "Follow up",
          "priority": "high"
        }
      },
      "event_timestamp": "2024-01-15T10:00:00Z",
      "created_by": "developer_api",
      "created_by_id": "42",
      "is_aggregated": false,
      "children": []
    }
  ],
  "has_next_page": true,
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

API key for authentication (format: "Bearer YOUR_API_KEY")

Path Parameters

record_id
integer
required

Record ID

Query Parameters

limit
integer

Max events to return (1-100, default: 50)

cursor
string

Pagination cursor from previous response

Response

Timeline events

data
object[]
has_next_page
boolean
next_cursor
string
Last modified on March 7, 2026