Check the progress of a project export job.
- A
202response means the export is still being processed — continue polling. - A
200response withisDone: truemeans the export is complete. Theurlsobject will contain the video file URLs.
URLs returned on completion:
uploadPath— direct MP4 download URLdashPath— MPEG-DASH streaming manifest URL
Security
ShuffllApiKey
- Mock serverhttps://api-docs.shuffll.com/_mock/apis/auth/project/{projectId}/edit/status/export
- https://api.shuffll.com/api/v1https://api.shuffll.com/api/v1/auth/project/{projectId}/edit/status/export
curl -i -X GET \
https://api-docs.shuffll.com/_mock/apis/auth/project/dad4bce8-f5cb-4078-a211-995864315e39/edit/status/export \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
{ "isDone": true, "urls": { "uploadPath": "https://content.shuffll.com/exports/project.mp4", "dashPath": "https://content.shuffll.com/exports/project.mpd" } }