Birdie
HomepageLog inSign up
Birdie API
Birdie API
  • Overview
  • Authentication
  • Pagination
  • HTTP Status & Errors
  • Reference
    • API Reference
      • Get a Recording
      • List Recordings
Powered by GitBook
On this page
  1. Reference
  2. API Reference

Get a Recording

This is the method to request a single recording if you have its identifier or its sharing link code.

PreviousAPI ReferenceNextList Recordings

Last updated 3 days ago

Retrieve a video recording by ID

get

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-05-31T20:48:49.236Z",
  "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"
}