Get a Recording
This is the method to request a single recording if you have its identifier or its sharing link code.
Returns a video object if found, otherwise a 404 error.
Path parameters
video_idanyRequired
The unique identifier of the video, which can be the video id (integer), video uuid, or even the video sharing-link identifier.
Header parameters
AuthorizationanyRequired
Bearer API-KEY
Responses
200
Successful response containing the video object.
application/json
403
Resource is not accessible (e.g. the video is into a private folder).
application/json
404
Video not found.
application/json
get
GET /api/v1/videos/{video_id} HTTP/1.1
Host: app.birdie.so
Accept: */*
{
"id": 1,
"way": "text",
"recorded_by": "text",
"requested_by": "text",
"bytes": 1,
"title": "text",
"console_logs": "text",
"created_at": "2025-07-04T02:33:56.791Z",
"duration": 1,
"network_logs": "text",
"processing_status": "text",
"sharing_link": "text",
"thumbnail_file": "text",
"transcription": {
"status": "text",
"language": "text",
"summary": "text",
"transcript": "text"
},
"uuid": "text",
"video_file": "text",
"origin": "text"
}
Last updated