/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:
Response: Paginated list of edit objects for the account.
Rate limit: Once every 1 second for unique requests.
Pagination: This endpoint uses page-based pagination with a fixed page size of 20 edits. To iterate through all results:
- 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.