PixelDance
V1VideoHistory

Get video generation history

GET
/v1/video/history

Authorization

cookieAuth
better-auth.session_token<token>

Session cookie set by Better Auth. Login via the app to obtain.

In: cookie

Query Parameters

cursor?string

RFC3339Nano timestamp for cursor-based pagination

Formatdate-time

Response Body

application/json

application/json

curl -X GET "http://localhost:3002/v1/video/history"
{
  "items": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "model": "string",
      "prompt": "string",
      "status": "pending",
      "createdAt": "2019-08-24T14:15:22Z",
      "errorType": "string",
      "assets": [
        {
          "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
          "taskId": "e6e9d88a-9b63-468a-aec3-b7a11de27af8",
          "mediaType": "string",
          "storageKey": "string",
          "url": "string",
          "width": 0,
          "height": 0
        }
      ]
    }
  ],
  "nextCursor": "string"
}
{
  "error": "string",
  "detail": "string"
}