Skip to main content
GET
/
v2
/
meeting-bots
List Meeting Bots
curl --request GET \
  --url https://api.toughtongueai.com/api/public/v2/meeting-bots \
  --header 'Authorization: Bearer <token>'
{
  "bots": [
    {
      "id": "bot_abc123",
      "scenario_id": "scenario_xyz",
      "meeting_url": "https://meet.google.com/abc-defg-hij",
      "status": "scheduled",
      "created_at": "2024-01-15T10:30:00Z"
    }
  ],
  "total": 1,
  "page": 1,
  "limit": 50
}
List meeting bot records with filtering and pagination.
status
string
Filter by status: pending, scheduled, in_call_recording, call_ended, failed
scenario_id
string
Filter by scenario ID
from_date
string
Filter from date (ISO format: YYYY-MM-DD or YYYY-MM-DDTHH:MM:SSZ)
to_date
string
Filter to date (ISO format: YYYY-MM-DD or YYYY-MM-DDTHH:MM:SSZ)
page
integer
default:"1"
Page number (starts at 1)
limit
integer
default:"50"
Items per page (max 500)
{
  "bots": [
    {
      "id": "bot_abc123",
      "scenario_id": "scenario_xyz",
      "meeting_url": "https://meet.google.com/abc-defg-hij",
      "status": "scheduled",
      "created_at": "2024-01-15T10:30:00Z"
    }
  ],
  "total": 1,
  "page": 1,
  "limit": 50
}