Skribby
API Reference

Get Scheduled Bots

GET/bot/scheduled
https://platform.skribby.io/api/v1/bot/scheduled

Retrieve all scheduled bots that haven't started yet. Returns an array of bot objects with status "scheduled".

Responses

Bot[]

Request

curl -X GET \
  "https://platform.skribby.io/api/v1/bot/scheduled" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Response

200 OKapplication/json
[
  {
    "id": "3c09b2aa-6708-42c1-8145-aa55ee223613",
    "status": "scheduled",
    "stop_reason": "invalid_meeting_url",
    "service": "gmeet",
    "scheduled_for": null,
    "time_limit": null,
    "stop_options": {
      "time_limit": 5,
      "waiting_room_timeout": 1,
      "last_person_detection": 0,
      "silence_detection": 0
    },
    "bot_name": "string"
  }
]