Skip to content

Get project export status

Request

Check the progress of a project export job.

  • A 202 response means the export is still being processed — continue polling.
  • A 200 response with isDone: true means the export is complete. The urls object will contain the video file URLs.

URLs returned on completion:

  • uploadPath — direct MP4 download URL
  • dashPath — MPEG-DASH streaming manifest URL
Security
ShuffllApiKey
Path
projectIdstring, (uuid)required

Unique identifier for the project

Example:dad4bce8-f5cb-4078-a211-995864315e39
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'

Responses

Export complete.

Bodyapplication/json
isDoneboolean(isDone)

Whether the operation is complete

Example:true
urlsobject(Urls)

Video output URLs

Response
{ "isDone": true, "urls": { "uploadPath": "https://content.shuffll.com/exports/project.mp4", "dashPath": "https://content.shuffll.com/exports/project.mpd" } }