POST
/
bots
/
create_bot
Create bot
curl --request POST \
  --url https://api.meestream.ai/v1/bots/create_bot \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "meeting_link": "<string>",
  "audio_required": true,
  "video_required": true,
  "bot_message": "<string>",
  "live_audio_required": {},
  "live_transcription_required": {},
  "transcription": {
    "deepgram": {
      "model": "<string>",
      "language": "<string>"
    }
  },
  "custom_attributes": {
    "tag": "<string>",
    "sample": "<string>"
  },
  "join_at": "<string>",
  "callback_url": "<string>"
}'
{
  "bot_id": "<string>"
}

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'.

Body

application/json

Response

201
application/json

Bot creation initiated successfully.

The response is of type object.