# Get project export status 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 Endpoint: GET /auth/project/{projectId}/edit/status/export Version: 1.2.0 Security: ShuffllApiKey ## Path parameters: - `projectId` (string, required) Unique identifier for the project Example: "dad4bce8-f5cb-4078-a211-995864315e39" ## Response 200 fields (application/json): - `isDone` (boolean) Whether the operation is complete - `urls` (object) Video output URLs - `urls.uploadPath` (string) Direct MP4 download URL - `urls.dashPath` (string) MPEG-DASH streaming manifest URL ## Response 202 fields (application/json): - `isDone` (boolean) Whether the operation is complete - `urls` (object) Video output URLs - `urls.uploadPath` (string) Direct MP4 download URL - `urls.dashPath` (string) MPEG-DASH streaming manifest URL ## Response 400 fields (application/problem+json): - `type` (string) Example: "object" - `title` (string) Example: "Validation failed" - `message` (string) Example: "Bad Request" ## Response 404 fields (application/problem+json): - `type` (string) Example: "object" - `title` (string) Example: "Validation failed" - `message` (string) Example: "Bad Request"