SwishXKnowledge Base
API ReferenceVideos

List video generations

GET /v1/videos

GET https://api.swishx.com/v1/videos

Query parameters

ParameterTypeDescription
limitintegerMax results to return. Default 20, max 100.
afterstringAn id from a previous page's results — returns generations created after it.
statusstringFilter to a single status value.
curl "https://api.swishx.com/v1/videos?limit=10&status=succeeded" \
  -H "Authorization: Bearer $SWISHX_API_KEY"

Response

{
  "object": "list",
  "data": [
    {
      "id": "vid_8f2c1a9b3d4e",
      "object": "video",
      "status": "succeeded",
      "model": "finsen-3.2",
      "created_at": "2026-08-07T18:22:04Z",
      "completed_at": "2026-08-07T18:24:41Z"
    }
  ],
  "has_more": false
}

Each item in data is the same shape returned by Retrieve a video generation. To page through results, pass the last item's id as after on the next request.

On this page