Skip to main content
GET
/
v1
/
projects
/
{projectId}
Get project status and all image results
curl --request GET \
  --url https://api.fotolabs.co/v1/projects/{projectId} \
  --header 'Authorization: Bearer <token>'
{
  "projectId": "ca5f09f7-6838-459c-ac0f-7be03c60de24",
  "status": "completed",
  "images": [
    {
      "imageId": "aaa-...",
      "status": "completed",
      "resultImageUrl": "https://d1i1ga8jkrbik1.cloudfront.net/.../result/aaa-....jpg",
      "originalImageUrl": "https://d1i1ga8jkrbik1.cloudfront.net/...",
      "errorMessage": null,
      "createdAt": "2026-05-09T18:00:48.421Z",
      "updatedAt": "2026-05-09T18:06:00.240Z"
    },
    {
      "imageId": "bbb-...",
      "status": "failed",
      "resultImageUrl": null,
      "originalImageUrl": "https://d1i1ga8jkrbik1.cloudfront.net/...",
      "errorMessage": "Gemini API quota exceeded after 5 retries",
      "createdAt": "2026-05-09T18:00:50.000Z",
      "updatedAt": "2026-05-09T18:07:00.000Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.fotolabs.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key with fl_ prefix, issued from the Fotolabs dashboard

Path Parameters

projectId
string<uuid>
required

Response

Project and image statuses.

projectId
string<uuid>
required
status
enum<string>
required
Available options:
pending,
processing,
completed
images
object[]
required