GET/v1/tracking
API ExplorerRequest
curl -X GET "/v1/tracking"
Response
Run the request to inspect the response.
GET/v1/tracking/{id}
API ExplorerRequest
curl -X GET "/v1/tracking/{id}"Response
Run the request to inspect the response.
PATCH/v1/tracking/{id}
API ExplorerRequest
curl -X PATCH "/v1/tracking/{id}" -H "Content-Type: application/json" -d '{
"url": "https://example.com"
}'Response
Run the request to inspect the response.
GET/v1/tracking/count
API ExplorerRequest
curl -X GET "/v1/tracking/count"
Response
Run the request to inspect the response.
A Tracking configuration is the schedule that extends a Page's
Timeline — its scheduleEnabled, scheduleFrequency, nextRunAt, and
isPaused flag. The Tracking API is the right surface for dashboards that
want to see what's scheduled without enumerating all Pages.
Endpoints
| Method | Path | Scope |
|---|---|---|
GET | /v1/tracking | moments.read |
GET | /v1/tracking/{id} | moments.read |
PATCH | /v1/tracking/{id} | moments.read |
GET | /v1/tracking/count | moments.read |
The PATCH endpoint accepts the same MomentConfig fields as
PATCH /v1/moments/{id} — pause, change frequency, or update viewport in
one call.
Spec
The full request and response shapes are in the OpenAPI spec at
/api/v1/openapi under the
Tracking tag.

