Record a meeting
curl --request POST \
--url https://api.videodb.io/collection/{collection_id}/meeting/record \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"meeting_url": "https://meet.google.com/abc-def-ghi",
"bot_name": "VideoDB Assistant",
"meeting_title": "Weekly standup",
"time_zone": "UTC",
"bot_image_url": "https://example.com/bot-avatar.png",
"realtime_stream": false,
"callback_url": "https://webhook.example.com/callback",
"callback_data": {}
}
'const options = {
method: 'POST',
headers: {'x-access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
meeting_url: 'https://meet.google.com/abc-def-ghi',
bot_name: 'VideoDB Assistant',
meeting_title: 'Weekly standup',
time_zone: 'UTC',
bot_image_url: 'https://example.com/bot-avatar.png',
realtime_stream: false,
callback_url: 'https://webhook.example.com/callback',
callback_data: {}
})
};
fetch('https://api.videodb.io/collection/{collection_id}/meeting/record', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.videodb.io/collection/{collection_id}/meeting/record",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'meeting_url' => 'https://meet.google.com/abc-def-ghi',
'bot_name' => 'VideoDB Assistant',
'meeting_title' => 'Weekly standup',
'time_zone' => 'UTC',
'bot_image_url' => 'https://example.com/bot-avatar.png',
'realtime_stream' => false,
'callback_url' => 'https://webhook.example.com/callback',
'callback_data' => [
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.videodb.io/collection/{collection_id}/meeting/record"
payload := strings.NewReader("{\n \"meeting_url\": \"https://meet.google.com/abc-def-ghi\",\n \"bot_name\": \"VideoDB Assistant\",\n \"meeting_title\": \"Weekly standup\",\n \"time_zone\": \"UTC\",\n \"bot_image_url\": \"https://example.com/bot-avatar.png\",\n \"realtime_stream\": false,\n \"callback_url\": \"https://webhook.example.com/callback\",\n \"callback_data\": {}\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.videodb.io/collection/{collection_id}/meeting/record")
.header("x-access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"meeting_url\": \"https://meet.google.com/abc-def-ghi\",\n \"bot_name\": \"VideoDB Assistant\",\n \"meeting_title\": \"Weekly standup\",\n \"time_zone\": \"UTC\",\n \"bot_image_url\": \"https://example.com/bot-avatar.png\",\n \"realtime_stream\": false,\n \"callback_url\": \"https://webhook.example.com/callback\",\n \"callback_data\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.videodb.io/collection/{collection_id}/meeting/record")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"meeting_url\": \"https://meet.google.com/abc-def-ghi\",\n \"bot_name\": \"VideoDB Assistant\",\n \"meeting_title\": \"Weekly standup\",\n \"time_zone\": \"UTC\",\n \"bot_image_url\": \"https://example.com/bot-avatar.png\",\n \"realtime_stream\": false,\n \"callback_url\": \"https://webhook.example.com/callback\",\n \"callback_data\": {}\n}"
response = http.request(request)
puts response.read_body$headers=@{}
$headers.Add("x-access-token", "<api-key>")
$headers.Add("Content-Type", "application/json")
$response = Invoke-WebRequest -Uri 'https://api.videodb.io/collection/{collection_id}/meeting/record' -Method POST -Headers $headers -ContentType 'application/json' -Body '{
"meeting_url": "https://meet.google.com/abc-def-ghi",
"bot_name": "VideoDB Assistant",
"meeting_title": "Weekly standup",
"time_zone": "UTC",
"bot_image_url": "https://example.com/bot-avatar.png",
"realtime_stream": false,
"callback_url": "https://webhook.example.com/callback",
"callback_data": {}
}'import Foundation
let parameters = [
"meeting_url": "https://meet.google.com/abc-def-ghi",
"bot_name": "VideoDB Assistant",
"meeting_title": "Weekly standup",
"time_zone": "UTC",
"bot_image_url": "https://example.com/bot-avatar.png",
"realtime_stream": false,
"callback_url": "https://webhook.example.com/callback",
"callback_data": []
] as [String : Any?]
let postData = try JSONSerialization.data(withJSONObject: parameters, options: [])
let url = URL(string: "https://api.videodb.io/collection/{collection_id}/meeting/record")!
var request = URLRequest(url: url)
request.httpMethod = "POST"
request.timeoutInterval = 10
request.allHTTPHeaderFields = [
"x-access-token": "<api-key>",
"Content-Type": "application/json"
]
request.httpBody = postData
let (data, _) = try await URLSession.shared.data(for: request)
print(String(decoding: data, as: UTF8.self))using RestSharp;
var options = new RestClientOptions("https://api.videodb.io/collection/{collection_id}/meeting/record");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("x-access-token", "<api-key>");
request.AddJsonBody("{\n \"meeting_url\": \"https://meet.google.com/abc-def-ghi\",\n \"bot_name\": \"VideoDB Assistant\",\n \"meeting_title\": \"Weekly standup\",\n \"time_zone\": \"UTC\",\n \"bot_image_url\": \"https://example.com/bot-avatar.png\",\n \"realtime_stream\": false,\n \"callback_url\": \"https://webhook.example.com/callback\",\n \"callback_data\": {}\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);
using RestSharp;
var options = new RestClientOptions("https://api.videodb.io/collection/{collection_id}/meeting/record");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("x-access-token", "<api-key>");
request.AddJsonBody("{\n \"meeting_url\": \"https://meet.google.com/abc-def-ghi\",\n \"bot_name\": \"VideoDB Assistant\",\n \"meeting_title\": \"Weekly standup\",\n \"time_zone\": \"UTC\",\n \"bot_image_url\": \"https://example.com/bot-avatar.png\",\n \"realtime_stream\": false,\n \"callback_url\": \"https://webhook.example.com/callback\",\n \"callback_data\": {}\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);
const options = {
method: 'POST',
headers: {'x-access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
meeting_url: 'https://meet.google.com/abc-def-ghi',
bot_name: 'VideoDB Assistant',
meeting_title: 'Weekly standup',
time_zone: 'UTC',
bot_image_url: 'https://example.com/bot-avatar.png',
realtime_stream: false,
callback_url: 'https://webhook.example.com/callback',
callback_data: {}
})
};
fetch('https://api.videodb.io/collection/{collection_id}/meeting/record', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_WRITEDATA, stdout);
curl_easy_setopt(hnd, CURLOPT_URL, "https://api.videodb.io/collection/{collection_id}/meeting/record");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "x-access-token: <api-key>");
headers = curl_slist_append(headers, "Content-Type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\n \"meeting_url\": \"https://meet.google.com/abc-def-ghi\",\n \"bot_name\": \"VideoDB Assistant\",\n \"meeting_title\": \"Weekly standup\",\n \"time_zone\": \"UTC\",\n \"bot_image_url\": \"https://example.com/bot-avatar.png\",\n \"realtime_stream\": false,\n \"callback_url\": \"https://webhook.example.com/callback\",\n \"callback_data\": {}\n}");
CURLcode ret = curl_easy_perform(hnd);CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_WRITEDATA, stdout);
curl_easy_setopt(hnd, CURLOPT_URL, "https://api.videodb.io/collection/{collection_id}/meeting/record");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "x-access-token: <api-key>");
headers = curl_slist_append(headers, "Content-Type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\n \"meeting_url\": \"https://meet.google.com/abc-def-ghi\",\n \"bot_name\": \"VideoDB Assistant\",\n \"meeting_title\": \"Weekly standup\",\n \"time_zone\": \"UTC\",\n \"bot_image_url\": \"https://example.com/bot-avatar.png\",\n \"realtime_stream\": false,\n \"callback_url\": \"https://webhook.example.com/callback\",\n \"callback_data\": {}\n}");
CURLcode ret = curl_easy_perform(hnd);val client = OkHttpClient()
val mediaType = MediaType.parse("application/json")
val body = RequestBody.create(mediaType, "{\n \"meeting_url\": \"https://meet.google.com/abc-def-ghi\",\n \"bot_name\": \"VideoDB Assistant\",\n \"meeting_title\": \"Weekly standup\",\n \"time_zone\": \"UTC\",\n \"bot_image_url\": \"https://example.com/bot-avatar.png\",\n \"realtime_stream\": false,\n \"callback_url\": \"https://webhook.example.com/callback\",\n \"callback_data\": {}\n}")
val request = Request.Builder()
.url("https://api.videodb.io/collection/{collection_id}/meeting/record")
.post(body)
.addHeader("x-access-token", "<api-key>")
.addHeader("Content-Type", "application/json")
.build()
val response = client.newCall(request).execute(){
"success": true,
"data": {
"bot_id": "bot-12345"
}
}{
"success": false,
"message": "Error message",
"error_code": "ERROR_CODE"
}Record Meeting
Start recording a meeting from a video conferencing platform
POST
/
collection
/
{collection_id}
/
meeting
/
record
Record a meeting
curl --request POST \
--url https://api.videodb.io/collection/{collection_id}/meeting/record \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"meeting_url": "https://meet.google.com/abc-def-ghi",
"bot_name": "VideoDB Assistant",
"meeting_title": "Weekly standup",
"time_zone": "UTC",
"bot_image_url": "https://example.com/bot-avatar.png",
"realtime_stream": false,
"callback_url": "https://webhook.example.com/callback",
"callback_data": {}
}
'const options = {
method: 'POST',
headers: {'x-access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
meeting_url: 'https://meet.google.com/abc-def-ghi',
bot_name: 'VideoDB Assistant',
meeting_title: 'Weekly standup',
time_zone: 'UTC',
bot_image_url: 'https://example.com/bot-avatar.png',
realtime_stream: false,
callback_url: 'https://webhook.example.com/callback',
callback_data: {}
})
};
fetch('https://api.videodb.io/collection/{collection_id}/meeting/record', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.videodb.io/collection/{collection_id}/meeting/record",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'meeting_url' => 'https://meet.google.com/abc-def-ghi',
'bot_name' => 'VideoDB Assistant',
'meeting_title' => 'Weekly standup',
'time_zone' => 'UTC',
'bot_image_url' => 'https://example.com/bot-avatar.png',
'realtime_stream' => false,
'callback_url' => 'https://webhook.example.com/callback',
'callback_data' => [
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.videodb.io/collection/{collection_id}/meeting/record"
payload := strings.NewReader("{\n \"meeting_url\": \"https://meet.google.com/abc-def-ghi\",\n \"bot_name\": \"VideoDB Assistant\",\n \"meeting_title\": \"Weekly standup\",\n \"time_zone\": \"UTC\",\n \"bot_image_url\": \"https://example.com/bot-avatar.png\",\n \"realtime_stream\": false,\n \"callback_url\": \"https://webhook.example.com/callback\",\n \"callback_data\": {}\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.videodb.io/collection/{collection_id}/meeting/record")
.header("x-access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"meeting_url\": \"https://meet.google.com/abc-def-ghi\",\n \"bot_name\": \"VideoDB Assistant\",\n \"meeting_title\": \"Weekly standup\",\n \"time_zone\": \"UTC\",\n \"bot_image_url\": \"https://example.com/bot-avatar.png\",\n \"realtime_stream\": false,\n \"callback_url\": \"https://webhook.example.com/callback\",\n \"callback_data\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.videodb.io/collection/{collection_id}/meeting/record")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"meeting_url\": \"https://meet.google.com/abc-def-ghi\",\n \"bot_name\": \"VideoDB Assistant\",\n \"meeting_title\": \"Weekly standup\",\n \"time_zone\": \"UTC\",\n \"bot_image_url\": \"https://example.com/bot-avatar.png\",\n \"realtime_stream\": false,\n \"callback_url\": \"https://webhook.example.com/callback\",\n \"callback_data\": {}\n}"
response = http.request(request)
puts response.read_body$headers=@{}
$headers.Add("x-access-token", "<api-key>")
$headers.Add("Content-Type", "application/json")
$response = Invoke-WebRequest -Uri 'https://api.videodb.io/collection/{collection_id}/meeting/record' -Method POST -Headers $headers -ContentType 'application/json' -Body '{
"meeting_url": "https://meet.google.com/abc-def-ghi",
"bot_name": "VideoDB Assistant",
"meeting_title": "Weekly standup",
"time_zone": "UTC",
"bot_image_url": "https://example.com/bot-avatar.png",
"realtime_stream": false,
"callback_url": "https://webhook.example.com/callback",
"callback_data": {}
}'import Foundation
let parameters = [
"meeting_url": "https://meet.google.com/abc-def-ghi",
"bot_name": "VideoDB Assistant",
"meeting_title": "Weekly standup",
"time_zone": "UTC",
"bot_image_url": "https://example.com/bot-avatar.png",
"realtime_stream": false,
"callback_url": "https://webhook.example.com/callback",
"callback_data": []
] as [String : Any?]
let postData = try JSONSerialization.data(withJSONObject: parameters, options: [])
let url = URL(string: "https://api.videodb.io/collection/{collection_id}/meeting/record")!
var request = URLRequest(url: url)
request.httpMethod = "POST"
request.timeoutInterval = 10
request.allHTTPHeaderFields = [
"x-access-token": "<api-key>",
"Content-Type": "application/json"
]
request.httpBody = postData
let (data, _) = try await URLSession.shared.data(for: request)
print(String(decoding: data, as: UTF8.self))using RestSharp;
var options = new RestClientOptions("https://api.videodb.io/collection/{collection_id}/meeting/record");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("x-access-token", "<api-key>");
request.AddJsonBody("{\n \"meeting_url\": \"https://meet.google.com/abc-def-ghi\",\n \"bot_name\": \"VideoDB Assistant\",\n \"meeting_title\": \"Weekly standup\",\n \"time_zone\": \"UTC\",\n \"bot_image_url\": \"https://example.com/bot-avatar.png\",\n \"realtime_stream\": false,\n \"callback_url\": \"https://webhook.example.com/callback\",\n \"callback_data\": {}\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);
using RestSharp;
var options = new RestClientOptions("https://api.videodb.io/collection/{collection_id}/meeting/record");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("x-access-token", "<api-key>");
request.AddJsonBody("{\n \"meeting_url\": \"https://meet.google.com/abc-def-ghi\",\n \"bot_name\": \"VideoDB Assistant\",\n \"meeting_title\": \"Weekly standup\",\n \"time_zone\": \"UTC\",\n \"bot_image_url\": \"https://example.com/bot-avatar.png\",\n \"realtime_stream\": false,\n \"callback_url\": \"https://webhook.example.com/callback\",\n \"callback_data\": {}\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);
const options = {
method: 'POST',
headers: {'x-access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
meeting_url: 'https://meet.google.com/abc-def-ghi',
bot_name: 'VideoDB Assistant',
meeting_title: 'Weekly standup',
time_zone: 'UTC',
bot_image_url: 'https://example.com/bot-avatar.png',
realtime_stream: false,
callback_url: 'https://webhook.example.com/callback',
callback_data: {}
})
};
fetch('https://api.videodb.io/collection/{collection_id}/meeting/record', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_WRITEDATA, stdout);
curl_easy_setopt(hnd, CURLOPT_URL, "https://api.videodb.io/collection/{collection_id}/meeting/record");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "x-access-token: <api-key>");
headers = curl_slist_append(headers, "Content-Type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\n \"meeting_url\": \"https://meet.google.com/abc-def-ghi\",\n \"bot_name\": \"VideoDB Assistant\",\n \"meeting_title\": \"Weekly standup\",\n \"time_zone\": \"UTC\",\n \"bot_image_url\": \"https://example.com/bot-avatar.png\",\n \"realtime_stream\": false,\n \"callback_url\": \"https://webhook.example.com/callback\",\n \"callback_data\": {}\n}");
CURLcode ret = curl_easy_perform(hnd);CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_WRITEDATA, stdout);
curl_easy_setopt(hnd, CURLOPT_URL, "https://api.videodb.io/collection/{collection_id}/meeting/record");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "x-access-token: <api-key>");
headers = curl_slist_append(headers, "Content-Type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\n \"meeting_url\": \"https://meet.google.com/abc-def-ghi\",\n \"bot_name\": \"VideoDB Assistant\",\n \"meeting_title\": \"Weekly standup\",\n \"time_zone\": \"UTC\",\n \"bot_image_url\": \"https://example.com/bot-avatar.png\",\n \"realtime_stream\": false,\n \"callback_url\": \"https://webhook.example.com/callback\",\n \"callback_data\": {}\n}");
CURLcode ret = curl_easy_perform(hnd);val client = OkHttpClient()
val mediaType = MediaType.parse("application/json")
val body = RequestBody.create(mediaType, "{\n \"meeting_url\": \"https://meet.google.com/abc-def-ghi\",\n \"bot_name\": \"VideoDB Assistant\",\n \"meeting_title\": \"Weekly standup\",\n \"time_zone\": \"UTC\",\n \"bot_image_url\": \"https://example.com/bot-avatar.png\",\n \"realtime_stream\": false,\n \"callback_url\": \"https://webhook.example.com/callback\",\n \"callback_data\": {}\n}")
val request = Request.Builder()
.url("https://api.videodb.io/collection/{collection_id}/meeting/record")
.post(body)
.addHeader("x-access-token", "<api-key>")
.addHeader("Content-Type", "application/json")
.build()
val response = client.newCall(request).execute(){
"success": true,
"data": {
"bot_id": "bot-12345"
}
}{
"success": false,
"message": "Error message",
"error_code": "ERROR_CODE"
}Start recording a meeting by sending a bot to join a video conferencing session. Supports Google Meet, Zoom, and other platforms.
- The bot joins the meeting and records audio/video
- Set
bot_nameto customize the display name in the meeting - Use
bot_image_urlto set a custom avatar for the bot - Enable
realtime_streamfor live streaming during the meeting - Use
callback_urlfor webhook notifications on meeting events
Get Meeting
Check recording status
Meeting Intelligence
Build meeting intelligence workflows
Authorizations
API key for authentication (sk-xxx format)
Path Parameters
Example:
"default"
Body
application/json
Example:
"https://meet.google.com/abc-def-ghi"
Example:
"VideoDB Assistant"
Example:
"Weekly standup"
Example:
"UTC"
Example:
"https://example.com/bot-avatar.png"
Example:
false
Example:
"https://webhook.example.com/callback"
⌘I