Skip to main content
GET
/
api
/
entities
/
{id}
/
changelog
Get changelog for a specific entity
curl --request GET \
  --url https://api.example.com/api/entities/{id}/changelog \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "date": "<string>",
      "change_type": "added",
      "changed_categories": [
        "<string>"
      ],
      "changes": [
        {
          "field": "<string>",
          "previous": "<string>",
          "current": "<string>"
        }
      ]
    }
  ],
  "page": {
    "limit": 123,
    "next_cursor": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Auth0 JWT access token

Path Parameters

id
string
required
Minimum string length: 1
Pattern: ^(\d+|[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})$
Example:

"12345"

Query Parameters

since
string

Return changes on or after this date (YYYY-MM-DD, max 90 days back)

Pattern: ^\d{4}-\d{2}-\d{2}$
Example:

"2026-03-20"

limit
string

Number of changelog entries to return (1-200, default 50)

Example:

"50"

Response

Entity changelog

data
object[]
required
page
object
required