Skip to main content
GET
/
v1
/
generate
/
{id}
curl --request GET \
  --url https://api.pixellabsai.app/v1/generate/gen_8f7b2c9a1e3d \
  --header 'Authorization: Bearer pixel_live_abc123def456'
{
  "generationId": "gen_8f7b2c9a1e3d",
  "status": "completed",
  "progress": 100,
  "imageUrl": "https://cdn.pixellabsai.app/images/gen_8f7b2c9a1e3d.png",
  "arweaveUrl": "https://arweave.net/abc123def456ghi789jkl012mno345pqr678stu901vwx234yz",
  "metadata": {
    "prompt": "cyberpunk samurai warrior with glowing katana",
    "style": "digital_art",
    "aspectRatio": "1:1",
    "quality": "high",
    "seed": 1847293847,
    "model": "synthetix-v2.1"
  },
  "createdAt": "2026-03-16T14:30:00Z",
  "completedAt": "2026-03-16T14:30:12Z"
}

Authorization

Authorization
string
required
Bearer token. Format: Bearer <token>

Path Parameters

id
string
required
The generation ID returned from the generate endpoint. Format: gen_<12 chars>

Response

generationId
string
Unique generation identifier
status
string
Current status. Values: queued, processing, completed, failed
progress
number
Completion percentage (0-100)
imageUrl
string
HTTPS URL to generated image (only when status is completed)
arweaveUrl
string
Permanent Arweave storage URL (only when status is completed)
metadata
object
Generation metadata including prompt, style, and technical details
createdAt
string
ISO 8601 timestamp of request
completedAt
string
ISO 8601 timestamp of completion (only when status is completed)
curl --request GET \
  --url https://api.pixellabsai.app/v1/generate/gen_8f7b2c9a1e3d \
  --header 'Authorization: Bearer pixel_live_abc123def456'
{
  "generationId": "gen_8f7b2c9a1e3d",
  "status": "completed",
  "progress": 100,
  "imageUrl": "https://cdn.pixellabsai.app/images/gen_8f7b2c9a1e3d.png",
  "arweaveUrl": "https://arweave.net/abc123def456ghi789jkl012mno345pqr678stu901vwx234yz",
  "metadata": {
    "prompt": "cyberpunk samurai warrior with glowing katana",
    "style": "digital_art",
    "aspectRatio": "1:1",
    "quality": "high",
    "seed": 1847293847,
    "model": "synthetix-v2.1"
  },
  "createdAt": "2026-03-16T14:30:00Z",
  "completedAt": "2026-03-16T14:30:12Z"
}