# Get project Retrieve the full details of a specific project, including its current status, name, and workspace. Use the status field to determine if the project is still being generated: - STRUCTURE — initial structure is being built - GENERATING_IMAGES — images and media are being generated - EDITING — enhancement is running automatically - DONE — project is ready Endpoint: GET /auth/project/{projectId} 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): - `id` (string) Unique project identifier Example: "6947b539cc95ea68854bb523" - `name` (string) Project name Example: "Breaking the Agency Mold" - `status` (string) Current project status Enum: "STRUCTURE", "GENERATING_IMAGES", "EDITING", "DONE" - `createdAt` (string) Project creation timestamp Example: "2025-12-15T07:26:34.333Z" - `workspaceId` (string) ID of the workspace this project belongs to Example: "693fb82afd8d1c43077ba0fe" ## Response 401 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"