Skip to main content
GET
/
collection
/
{collection_id}
/
meeting
/
{bot_id}
Get meeting recording information
curl --request GET \
  --url https://api.videodb.io/collection/{collection_id}/meeting/{bot_id} \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "data": {
    "bot_id": "bot-12345",
    "status": "recording",
    "video_url": "https://stream.videodb.io/v/12345"
  }
}
Retrieve information about a meeting recording, including its status and video URL.
  • Status indicates the current state of the recording (e.g., recording, done)
  • The video_url is available once the recording is complete
  • Use the bot_id returned from the record meeting endpoint

Authorizations

x-access-token
string
header
required

API key for authentication (sk-xxx format)

Path Parameters

collection_id
string
required
Example:

"default"

bot_id
string
required
Example:

"bot-12345"

Response

Meeting information

success
boolean
Example:

true

data
object