# Retrieve video generation job

## Get video generation job status

> Retrieves the status, progress, and details of a specific video generation job.

```json
{"openapi":"3.0.3","info":{"title":"Video Generation Job Status 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"}}},"paths":{"/video-generation-jobs/{videoGenerationJobId}":{"get":{"summary":"Get video generation job status","description":"Retrieves the status, progress, and details of a specific video generation job.","operationId":"getVideoGenerationJobStatus","parameters":[{"name":"videoGenerationJobId","in":"path","required":true,"schema":{"type":"string"},"description":"The ID of the video generation job."}],"responses":{"200":{"description":"Video generation job status and details retrieved successfully. The return value also contains all of the video-generation-job itself, which is not detailed here.","content":{"application/json":{"schema":{"type":"object","properties":{"status":{"type":"string","description":"The current status of the video generation job.","enum":["in_queue","preprocessing","preprocessing_finished","generating","finished","failed","deleted"]},"videoId":{"type":"string","description":"The ID of the provisioned generated video"},"progress":{"type":"number","description":"The current progress of the video generation job."},"maximumProgress":{"type":"number","description":"The maximum progress value of the video generation job."}}}}}},"400":{"description":"Bad Request. Invalid videoGenerationJobId parameter."},"401":{"description":"Unauthorized. Authentication required."},"404":{"description":"Not Found. Video generation job not found."},"500":{"description":"Internal server error."}}}}}}
```
