/api/v3/edits
Authentication: Requires API Key in the request header.
Authorization: Only edits belonging to the account associated with the API token are returned. When studioId or projectId filters are supplied, the studio/project must belong to the account.
Query Parameters:
| Parameter | Type | Description |
|---|---|---|
studioId | string | Filter edits by studio ID |
projectId | string | Filter edits by project ID |
start_date | string | Only return edits created on or after this date (ISO-8601). Example: 2025-10-01T00:00:00Z |
end_date | string | Only return edits created on or before this date (ISO-8601). Must be greater than or equal to start_date. |
page | integer | Page number (starts from 1) |
- Make the first request without a
pageparameter (defaults to page 1). - If
next_page_urlis notnull, request the next page (either follownext_page_urlor incrementpage). - Repeat until
next_page_urlisnull.
200 OKEdits retrieved successfully.401 UnauthorizedAuthentication failed (missing or invalid API token).429 Too Many RequestsThis endpoint is rate limited.500 Internal Server ErrorUnexpected server error.