List all videos

List all completed past video generation.

Server URLhttps://api.animationapi.com/v1
GET/videos
AuthorizationBearer <token>

API Key authentication using Bearer token. Generate an API key from your dashboard and include it in the Authorization header. Format: Authorization: Bearer your_api_key_here

In: header

Query Parameters

limit?integer

Maximum number of results to return.

Default20
Range1 <= value <= 100
offset?integer

Number of results to skip.

Default0
Range0 <= value

Response Body

curl -X GET "https://api.animationapi.com/v1/videos?limit=20&offset=0"
{
  "data": [
    {
      "video_url": "https://assets.animationapi.com/91786334-0000-0000-b290-0b30ad82d5d3/vid_tEeYdfDgtTL9YSqAndjer.mp4",
      "created_at": "2025-06-26T00:00:00.000Z"
    }
  ],
  "pagination": {
    "limit": 20,
    "offset": 0,
    "total": 150,
    "has_more": true
  }
}

{
  "error": {
    "code": "AUTHENTICATION_REQUIRED",
    "message": "API key required. Please provide your API key in the Authorization header as 'Bearer your_api_key'"
  }
}

{
  "error": {
    "code": "VALIDATION_ERROR",
    "message": "Request validation failed",
    "details": [
      {
        "field": "fps",
        "code": "INVALID_VALUE",
        "message": "fps must be one of: 12, 24, 30",
        "value": 60
      }
    ]
  }
}

{
  "error": {
    "code": "RATE_LIMIT_EXCEEDED",
    "message": "API rate limit exceeded",
    "details": "You have exceeded the maximum number of requests per minute",
    "retry_after": 60,
    "limit": 100,
    "remaining": 0,
    "reset": 1640995200
  }
}

{
  "error": {
    "code": "INTERNAL_SERVER_ERROR",
    "message": "An unexpected error occurred",
    "details": "Please try again later or contact support if the problem persists"
  }
}

{
  "error": {
    "code": "MAINTENANCE_MODE",
    "message": "Service is currently under maintenance",
    "details": "Scheduled maintenance in progress. Please try again later.",
    "retry_after": 3600
  }
}