Colossyan API
  • Welcome
  • Getting Started
    • Quickstart
    • Extracting request bodies from the web-editor
  • Basics
    • Authentication
    • Endpoints
    • Video Generation
      • Generating using a template
      • Generating a video manually
      • Receiving a generated video
    • Using template variables
      • Script template variables
      • Text template variables
    • Generated videos
      • Retrieve a video
      • Delete a video
    • Video generation job
      • Retrieve video generation job
      • Delete video generation job
    • Assets
      • Actors
      • Voices
  • Advanced
    • Advanced use-cases
    • Timing
  • Experimental
    • Knowledge to draft
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. Basics
  2. Generated videos

Retrieve a video

PreviousGenerated videosNextDelete a video

Last updated 1 month ago

Was this helpful?

Get details of a generated video

get

Retrieves detailed information about a specific generated video.

Authorizations
Path parameters
videoIdstringRequired

The ID of the generated video.

Responses
200
Generated video details retrieved successfully
application/json
400
Bad Request. Invalid videoId parameter.
401
Unauthorized. Authentication required.
404
Not Found. Generated video not found.
500
Internal server error.
get
GET /api/v1/generated-videos/{videoId} HTTP/1.1
Host: app.colossyan.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "id": "text",
  "jobId": "text",
  "publicUrl": "text",
  "thumbnailUrl": "text",
  "name": "text",
  "createdAt": "2025-05-18T10:42:43.450Z",
  "videoSizeBytes": 1,
  "videoDurationSeconds": 1
}