Skip to main content
GET
/
v1
/
videos
/
{video_id}
cURL
curl -s "https://api.deerapi.com/v1/videos/example-id" \
  -H "Authorization: Bearer $DEERAPI_KEY"
{
  "id": "video_veo3_01jv7g6f1q0x7c2g0t8m4f8p4a",
  "object": "video",
  "created_at": 1773283200,
  "status": "completed",
  "completed_at": 1773283538,
  "error": null,
  "expires_at": 1773287138,
  "model": "veo3.1-pro",
  "progress": 100,
  "remixed_from_video_id": null,
  "seconds": "8",
  "size": "16x9"
}

Overview

Use this endpoint to call the Veo 3 Query workflow through DeerAPI. The API reference on this page shows the request schema, response schema, authentication requirements, and runnable examples for the configured endpoint.

Before you start

Use the DeerAPI base URL and pass your API Key in the Authorization header:
https://api.deerapi.com
Authorization: Bearer $DEERAPI_KEY

Model selection

Choose a current model ID from the live pricing page. Model availability changes over time, so avoid copying a model ID from an old project without checking the live list first.

Implementation notes

  • Use the OpenAPI playground for the exact request fields accepted by this endpoint.
  • Keep API Keys on the server side when you build production applications.
  • Log the request ID from failed calls so support can investigate the request.
  • Retry 429, 500, and 503 responses with exponential backoff.

Authorizations

Authorization
string
header
required

Use a DeerAPI API Key as a Bearer token.

Path Parameters

video_id
string
required

Use this field according to the endpoint schema.

Response

Use this field according to the endpoint schema.

id
string
required

Use this field according to the endpoint schema.

object
string
required

Use this field according to the endpoint schema.

created_at
integer
required

Use this field according to the endpoint schema.

status
enum<string>
required
Available options:
queued,
in_progress,
completed,
failed
model
string
required
progress
integer
required
Required range: 0 <= x <= 100
seconds
string
required
size
string
required
completed_at
integer | null
error
object
expires_at
integer | null
remixed_from_video_id
string | null