Get activated item counts

Analogous to "Daily New/Reactivated Items" graph on the Project Dashboard.

Returns an array of recent counts as [timestamp, count] pairs, where each count is the number of items that were first seen or reactivated in the time range [timestamp, timestamp + bucket_size - 1].

Timestamps are UNIX timestamps, in whole seconds.

Response

{ "err": 0, "result": [ [ // timestamp 1728561200, // count (number of occurrences from time 1728561200 until time 1728564799) 0 ], [ 1728564800, 0 ], [ 1728568400, 0 ], [ 1728572000, 6 ] ] }```
Log in to see full request history
timestatususer agent
Retrieving recent requests…
LoadingLoading…
Query Params
int32

Size of each bucket, in seconds. Only valid value is 86400 (day). Data wil be returned in the project timezone.

int32
Defaults to 60

Number of buckets to return. Must be in range [2, 366].

string

Comma-separated list of environments to filter by. Empty means "any environment".

Headers
string
required

Use a Project Access Token with 'read' scope

Response
200

success

Language
Click Try It! to start a request and see the response here!