{ "opencollection": "1.0.0", "info": { "name": "Riverside Business Exports Recordings API", "version": "v3" }, "items": [ { "info": { "name": "Recordings", "type": "folder" }, "items": [ { "info": { "name": "List All Recordings", "type": "http" }, "http": { "method": "GET", "url": "https://platform.riverside.fm/api/v2/recordings", "params": [ { "name": "studioId", "value": "", "type": "query", "description": "Filter recordings by studio ID" }, { "name": "projectId", "value": "", "type": "query", "description": "Filter recordings by project ID" }, { "name": "start_date", "value": "", "type": "query", "description": "Filter recordings created on or after this date (YYYY-MM-DD)" }, { "name": "end_date", "value": "", "type": "query", "description": "Filter recordings created on or before this date (YYYY-MM-DD)" }, { "name": "page", "value": "", "type": "query", "description": "Page number for pagination (defaults to 0)" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieves all recordings in your workspace with pagination support. Can be filtered by studio, project, or date range. Returns newest recordings first with a default cap of 20 per page. Rate limited to once every 10 seconds per unique request." }, { "info": { "name": "Get Recording", "type": "http" }, "http": { "method": "GET", "url": "https://platform.riverside.fm/api/v1/recordings/:recording_id", "params": [ { "name": "recording_id", "value": "", "type": "path", "description": "The recording ID (obtainable via \"Copy Recording ID\" in the recording menu)" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieves a single recording with associated tracks and metadata. Rate limited to one request per 10 seconds per unique recording ID." }, { "info": { "name": "Delete Recording", "type": "http" }, "http": { "method": "DELETE", "url": "https://platform.riverside.fm/api/v1/recordings/:recording_id", "params": [ { "name": "recording_id", "value": "", "type": "path", "description": "The recording ID to delete" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Permanently deletes a recording and all its associated files." }, { "info": { "name": "Download File", "type": "http" }, "http": { "method": "GET", "url": "https://platform.riverside.fm/api/v1/recordings/:recording_id/files/:file_id/download", "params": [ { "name": "recording_id", "value": "", "type": "path", "description": "The recording ID" }, { "name": "file_id", "value": "", "type": "path", "description": "The file ID to download" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Download a specific file associated with a recording track." }, { "info": { "name": "Download Transcription File", "type": "http" }, "http": { "method": "GET", "url": "https://platform.riverside.fm/api/v1/recordings/:recording_id/transcription/download", "params": [ { "name": "recording_id", "value": "", "type": "path", "description": "The recording ID" }, { "name": "format", "value": "", "type": "query", "description": "Transcription file format" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Download the transcription file for a recording in SRT or TXT format." } ] } ], "bundled": true }