# 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."}}}}}}
```
