Retrieve a paginated list of your AI generations with filtering by status.
| Name | Type | Required | Description |
|---|---|---|---|
Authorization | string | Yes | Your API key |
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | number | 20 | Results per page (max 100) |
offset | number | 0 | Number of results to skip |
status | string | - | Filter by status: pending, processing, uploading, success, error |
| Field | Type | Description |
|---|---|---|
data | array | List of generations |
data[].id | string | Generation ID |
data[].status | string | pending, processing, uploading, success, error |
data[].tool | string | Tool used |
data[].output | string | null | URL to generated media |
data[].thumbnail | string | null | URL to thumbnail |
data[].error | string | null | Error message if failed |
data[].type | string | Media type: image, video, audio, text, object |
data[].createdAt | string | Creation timestamp |
pagination.total | number | Total number of generations |
pagination.limit | number | Current page size |
pagination.offset | number | Current offset |
pagination.hasMore | boolean | Whether more results exist |