POST
/
video
/
fetch
/
{id}
Fetch queued video by ID
curl --request POST \
  --url https://modelslab.com/api/v6/video/fetch/{id} \
  --header 'Content-Type: application/json' \
  --data '{
  "key": "<string>"
}'
{
  "status": "success",
  "generationTime": 123,
  "id": 123,
  "output": [
    "<string>"
  ],
  "proxy_links": [
    "<string>"
  ],
  "future_links": [
    "<string>"
  ],
  "meta": {},
  "eta": 123,
  "message": "<string>",
  "tip": "<string>",
  "fetch_result": "<string>"
}

Request

Send a POST request to below endpoint to return the corresponding queued videos. Where {id} is the ID returned together with the URL in the response upon its generation. This endpoint does not generate new video, it returns already generated/queued videos.
curl
--request POST 'https://modelslab.com/api/v6/video/fetch/{id}' \

Body

json
{ 
    "key": ""
}

Path Parameters

id
integer
required

ID of the video to fetch

Body

application/json

Response

Fetched video response

The response is of type object.