# Get project creation status Poll this endpoint after creating a project to track AI generation progress. Returns a status field with one of three values: | status | Meaning | |---|---| | STRUCTURE | The AI is building the storyline and script | | GENERATING_IMAGES | Scene visuals and media are being generated | | DONE | Project creation is complete — enhancement will begin automatically | Keep polling until status is DONE. After that, use GET /auth/project/{projectId}/edit/status/enhance to track enhancement progress. Endpoint: GET /auth/project/{projectId}/create/status 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): - `status` (string) Current creation stage of the project Enum: "STRUCTURE", "GENERATING_IMAGES", "DONE" ## 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"