cURL
curl --request GET \ --url https://public.reap.video/api/v1/automation/get-dubbing-languages \ --header 'Authorization: Bearer <token>'
{ "sourceLanguages": [ { "code": "<string>", "name": "<string>" } ], "targetLanguages": [ { "code": "<string>", "name": "<string>" } ] }
Retrieve all supported languages for video dubbing
Show Source Language Object
Show Target Language Object
curl -X GET "https://public.reap.video/api/v1/automation/get-dubbing-languages" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"