> For the complete documentation index, see [llms.txt](https://docs.colossyan.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.colossyan.com/video-generation/generated-videos/retrieve-a-video.md).

# Retrieve a video

## Get details of a generated video

> Retrieves detailed information about a specific generated video.

```json
{"openapi":"3.0.3","info":{"title":"Generated Videos API","version":"1.0.0"},"servers":[{"url":"https://app.colossyan.com/api/v1","description":"V1 API"}],"security":[{"bearerAuth":[]}],"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer"}},"schemas":{"GeneratedVideoRecord":{"type":"object","properties":{"id":{"type":"string","description":"The unique identifier of the generated video."},"jobId":{"type":"string","description":"The ID of the video generation job that created this video."},"publicUrl":{"type":"string","description":"The public URL of the generated video."},"thumbnailUrl":{"type":"string","description":"URL of the video's thumbnail."},"name":{"type":"string","description":"The name of the video."},"createdAt":{"type":"string","format":"date-time","description":"The date and time the video was created."},"videoSizeBytes":{"type":"number","description":"The size of the video in bytes.","nullable":true},"videoDurationSeconds":{"type":"number","description":"The duration of the video in seconds.","nullable":true}}}}},"paths":{"/generated-videos/{videoId}":{"get":{"summary":"Get details of a generated video","description":"Retrieves detailed information about a specific generated video.","operationId":"getGeneratedVideo","parameters":[{"name":"videoId","in":"path","required":true,"schema":{"type":"string"},"description":"The ID of the generated video."}],"responses":{"200":{"description":"Generated video details retrieved successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GeneratedVideoRecord"}}}},"400":{"description":"Bad Request. Invalid videoId parameter."},"401":{"description":"Unauthorized. Authentication required."},"404":{"description":"Not Found. Generated video not found."},"500":{"description":"Internal server error."}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.colossyan.com/video-generation/generated-videos/retrieve-a-video.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
