Bots.Business API v2
  1. Broadcast
Bots.Business API v2
  • Bots.Business API v2
    • BB Api docs
    • Authentication
      • Sign in
      • Get Telegram login URL
      • Sign up
      • Telegram login
      • Reset Password
    • User account
      • Update password
      • Get user details
      • Update email
      • Get linked telegram accounts
      • Get telegram link url
      • Get users session token
      • Reset api key
      • Log out all device
      • Get iteration usage
      • Turn ON or OFF ads
      • Get payment plan
    • Bots
      • Create Bot
      • Get Bots
      • Get single bot
      • Edit Bot
      • Delete Bot
      • Start or Stop bot
      • Start CSV import
      • CSV import task status
      • Copy Bot
      • Git export
      • Git import
      • Get installed libraries
      • Install Lib
      • Uninstall lib
      • Get error log
      • Clear error logs
    • Commands
      • Folders
        • Create a folder
        • Get all folders
        • Delete a folder
      • Get Commands
      • Create Command
      • Get Command Details
      • Edit Command
      • Delete Command
    • Broadcast
      • Get broadcast tasks
        GET
      • Delete Broadcast task
        DELETE
      • Pause broadcast task
        POST
      • Resume broadcast task
        POST
    • Chats
      • Get chats
      • Block chat
      • Unblock chat
    • Properties
      • Get properties
      • Delete property
    • Libraries
      • Get libraries
    • Admin Panel
      • Get admin panels
      • Update admin panel values
    • Demo Store
      • Get store bots
      • Install demo bot
    • Get cloud plans
      GET
    • Schemas
      • Command Schema
      • User Public
      • Create & Edit Bot
      • Bot
  1. Broadcast

Get broadcast tasks

GET
https://api.bots.business/v2/bots/{id}/broadcaster_tasks
Last modified:2025-10-31 10:37:20
Use this endpoints to get active and completed broadcast tasks

Request

Path Params

Query Params

Responses

🟢200OK
application/json
You will get an array of broadcast tasks (Empty array for no tasks)
Body

🟠401Unauthorized
🟠404Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.bots.business/v2/bots/123/broadcaster_tasks?api_key=UKDZu-c68cubrIbniuE2P_nWj0p5r4IHARNrAV-I'
Response Response Example
200 - Success
{
    "id": 1211088,
    "cur_position": 1,
    "total": 1,
    "progress": 100,
    "bot_id": 2776468,
    "last_executed_at": "2025-10-27T07:16:54.548Z",
    "errors_count": 12,
    "bjs_action": {
        "name": "run-command-for-all",
        "params": {
            "command": "/broad2"
        }
    },
    "created_at": "2025-10-27T07:16:50.047Z",
    "updated_at": "2025-10-27T07:16:54.556Z",
    "scope": "All chats",
    "status": "finished"
}
Modified at 2025-10-31 10:37:20
Previous
Delete Command
Next
Delete Broadcast task
Built with