# Get project enhancement status Check the progress of the automatic enhancement process for a project. Enhancement starts automatically after a project is created. Poll this endpoint to track progress. - A 202 response means enhancement is still in progress — continue polling. - A 200 response with isDone: true means enhancement is complete and the project is ready to export. Endpoint: GET /auth/project/{projectId}/edit/status/enhance 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): - `percentages` (number) Completion percentage - `isDone` (boolean) Whether the operation is complete ## Response 202 fields (application/json): - `percentages` (number) Completion percentage - `isDone` (boolean) Whether the operation is complete ## 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"