Gallery
Stable
View and manage your generated images and videos.
List Gallery Items
GET/api/v1/gallery
Get all items in your gallery.
Query Parameters
| Parameter | Type | Description |
|---|---|---|
type | string | image or video |
limit | integer | Results per page |
offset | integer | Pagination 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 Gallery Item
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 Gallery Item
DELETE/api/v1/gallery/{id}
Delete an item from your gallery.
Deleted items cannot be recovered.
Storage Limits
| Plan | Storage |
|---|---|
| Free | 1 GB |
| Pro | 50 GB |
| Enterprise | Unlimited |
Gallery items are automatically deleted after 30 days on the free plan.