cURL
curl --request GET \ --url https://public.reap.video/api/v1/automation/get-all-presets \ --header 'Authorization: Bearer <token>'
{ "presets": [ { "id": "<string>", "name": "<string>", "source": "system", "preferences": { "addAudiogram": false, "addCaptions": true, "genre": "talking", "language": "en", "translationLanguage": "<string>", "transcriptionScript": "native", "orientation": "landscape", "resolution": 720, "clipDurations": [ [ 123 ] ] } } ], "currentPage": 123, "totalPages": 123, "totalPresets": 123 }
Retrieve all available caption presets for your studio
Show Preset Object
Show Preferences Object
curl -X GET "https://public.reap.video/api/v1/automation/get-all-presets?page=1&pageSize=20" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Page number for pagination
Number of presets per page (max 100)
Successful response
Show child attributes
Was this page helpful?