GET
/
media
/
{media_id}
curl --request GET \
  --url https://api.video.dev/v1/media/{media_id} \
  --header 'X-API-Key: <api-key>'
{
  "status": "complete",
  "media_id": "<string>",
  "media_url": "https://storage.xyz/media.mp4",
  "media_info": {
    "type": "video",
    "duration_ms": 123,
    "fps": 123,
    "frame_count": 123,
    "width": 123,
    "height": 123,
    "channels": 123
  }
}

Authorizations

X-API-Key
string
header
required

Path Parameters

media_id
string
required

ID of media to return

Response

200
application/json

successful operation

The response is of type object.