Skip to main content
GET
List Activity

Authorizations

x-api-key
string
header
required

API key for authentication. You can create one here.

Query Parameters

since
string<date-time>

ISO 8601 timestamp. Only changes strictly after this instant. Omit to start from the beginning of the organization's history.

until
string<date-time>

ISO 8601 timestamp. Only changes up to and including this instant. Pin it per sync run so pages cannot shift while you page.

order
enum<string>
default:desc

desc (default) lists the newest changes first. Use asc to export or sync in the order the changes happened.

Available options:
desc,
asc
website_id
string<uuid>

Restrict to one website. Omit for the whole organization. A website outside your key's scope, or outside your organization, returns 403.

entity_type
enum<string>[]

Comma-separated list of entity types to include. Omit for all.

Available options:
prompt,
topic,
prompt_tag
change_type
enum<string>[]

Comma-separated list of change types to include. Omit for all.

Available options:
created,
updated,
deleted,
restored,
paused,
unpaused
page_num
integer
default:0

Zero-indexed page number.

Required range: x >= 0
page_size
integer
default:100

Number of entries per page (1-100).

Required range: 1 <= x <= 100

Response

Successful response with the page of changes.

activity
object[]
required
pagination
object
required

Pagination metadata. Uses page_size + 1 lookahead — has_more=true means the next page is non-empty. No total-count field, by design (avoids the extra COUNT(*) round-trip).