Skip to main content
This endpoint is deprecated. Please migrate to the v3 List All Recordings endpoint.
HTTP Method: GET URL: /api/v2/recordings Authentication: Requires API Key in the request header. Query Parameters: You may optionally filter by one of the following parameters:
  • studioId: ID of the studio to filter recordings
  • projectId: ID of the project to filter recordings
  • start_date: Return recordings created on or after this date (Format: YYYY-MM-DD)
  • end_date: Return recordings created on or before this date (Format: YYYY-MM-DD)
Notes:
  • Providing only start_date returns all recordings from that date forward; providing only end_date returns all recordings up to that date.
  • Use both start_date and end_date to filter by a date range.
  • Date filtering works in combination with studioId or projectId.
  • If no parameter is provided, the response will include recordings from all studios in the account.
Response: List of recordings objects Rate limit: once every 10 seconds for unique request (e.g. different pages not limited) Sorting: Lists objects in order of “newest created first” Pagination: By default every response is capped at 20 recordings Response:
  • page page you are viewing
  • next_page_url
  • total_items
  • total_pages
  • data list of recording and their tracks
Request:
  • page page that you want to receive (optional, defaults to page 0)
Status Codes:
  • 200 OK Recordings retrieval successful.
  • 401 Unauthorized Authentication failed.

Sample Request

Sample Request with pagination

Sample Request with date range

Sample Response