Skip to main content
HTTP Method: GET URL: /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:
  1. Make the first request without a page parameter (defaults to page 1).
  2. If next_page_url is not null, request the next page (either follow next_page_url or increment page).
  3. Repeat until next_page_url is null.
Status Codes:
  • 200 OK Edits retrieved successfully.
  • 401 Unauthorized Authentication failed (missing or invalid API token).
  • 429 Too Many Requests This endpoint is rate limited.
  • 500 Internal Server Error Unexpected server error.

Sample Request

Sample Request with filters

Sample Response