Retrieve a paginated list of all AI-generated videos
Documentation Index
Fetch the complete documentation index at: https://docs.pictory.ai/llms.txt
Use this file to discover all available pages before exploring further.
pictai_)nextPageKey query parameter in the next request.| Status Code | Description |
|---|---|
| 200 | Request processed successfully. The items array contains the generated videos. An empty array is returned if no videos have been generated. |
| 401 | Unauthorized. The API key in the Authorization header is missing or invalid. |
| 500 | Internal server error. Retry the request after a brief delay. |
| Field | Type | Always Present | Description |
|---|---|---|---|
url | string | Yes | Direct download URL for the generated video (MP4) |
id | string | Yes | Unique identifier of the generated video |
prompt | string | Yes | The text prompt used to generate the video |
aspectRatio | string | Yes | Aspect ratio of the video (e.g., "9:16") |
createdDate | string | Yes | ISO 8601 creation timestamp |
model | string | Yes | AI model used for generation |
width | number | Yes | Video width in pixels |
height | number | Yes | Video height in pixels |
duration | string | Yes | Video duration (e.g., "8s") |
previewImageUrl | string | Yes | Preview image URL (JPG) |
thumbnailImageUrl | string | Yes | Thumbnail image URL (JPG) |
lastFrameImageUrl | string | Yes | Last frame image URL (PNG), useful for creating video continuations |
firstFrameImageUrl | string | No | Present only if a first frame image was provided in the original request |
referenceImageUrls | array | No | Present only if reference images were provided in the original request |
extendVideoUrl | string | No | Present only if the video was generated by extending another video |
nextPageKey field. To retrieve subsequent pages, pass this token as a query parameter in the next request.
Example paginated request:
nextPageKey is present in the response, you have reached the last page.