Skip to Content

Gallery

Stable

View and manage your generated images and videos.

GET/api/v1/gallery

Get all items in your gallery.

Query Parameters

ParameterTypeDescription
typestringimage or video
limitintegerResults per page
offsetintegerPagination offset

Response

{ "items": [ { "id": "gal_abc123", "type": "image", "url": "https://your-storage.vercel-storage.com/images/abc123.png", "prompt": "A mountain landscape at sunset", "model": "google/gemini-2.5-flash-image", "width": 1024, "height": 1024, "createdAt": "2024-01-15T10:30:00Z" } ], "total": 150 }

GET/api/v1/gallery/{id}

Get details about a specific item.

Response

{ "id": "gal_abc123", "type": "image", "url": "https://your-storage.vercel-storage.com/images/abc123.png", "prompt": "A mountain landscape at sunset", "negativePrompt": "blurry, low quality", "model": "google/gemini-2.5-flash-image", "width": 1024, "height": 1024, "seed": 12345, "cost": 0.02, "createdAt": "2024-01-15T10:30:00Z" }

DELETE/api/v1/gallery/{id}

Delete an item from your gallery.

Deleted items cannot be recovered.

Storage Limits

PlanStorage
Free1 GB
Pro50 GB
EnterpriseUnlimited

Gallery items are automatically deleted after 30 days on the free plan.