Skip to main content
GET
/
bots
/
{bot_id}
/
get_video
Get Bot Video
curl --request GET \
  --url https://api.meestream.ai/v1/bots/{bot_id}/get_video \
  --header 'Authorization: <api-key>'
This response does not have an example.

Overview

This endpoint retrieves the recorded video file for a specific bot session. The video file is returned directly as a binary stream.

Video Availability

The video file becomes available after:
  • The bot has left the meeting
  • Video processing is complete
  • The video_required parameter was set to true during bot creation

Response Format

The endpoint returns the video file directly with:
  • Content-Type: video/mp4 (or other video format)
  • Filename: Typically the bot_id

Use Cases

  • Download meeting recordings for archival
  • Process video for transcription or analysis
  • Generate meeting summaries with visual context
  • Create video highlights or clips

Notes

  • Ensure that video_required was set to true when creating the bot
  • Video files may take longer to process than audio files
  • Check the bot status to confirm video processing is complete before making this request
  • Video files are typically larger than audio files and may take longer to download

Authorizations

Authorization
string
header
required

All API endpoints are authenticated using API Keys. The key should be included in the 'Authorization' header, prefixed with 'Token '. Example: 'Authorization: Token YOUR_API_KEY'.

Path Parameters

bot_id
string
required

The unique identifier of the bot.

Response

Returns the video file directly (e.g., Content-Type: video/mp4). The filename is typically the bot_id.

The response is of type file.