Bots Business Api
  1. Bots
Bots Business Api
  • Authentication
    • Login Account
    • Register New User
    • Get telegram login url
    • Telegram login
    • Reset Password
  • User account
    • Get user details
    • Update email
    • Update password
    • Get linked telegram accounts
    • Get telegram link url
    • Get users session token
    • Reset api key
    • Log out all device
  • Bots
    • Create Bot
      POST
    • Get Bots
      GET
    • Edit Bot
      PUT
    • Launch or Stop Bot
      POST
    • Start CSV import
      POST
    • CSV import task status
      GET
    • Delete Bot
      DELETE
    • Copy Bot
      GET
    • Git export
      POST
    • Git import
      POST
    • Get installed libraries
      GET
    • Install Lib
      POST
    • Uninstall lib
      DELETE
    • Get error log
      GET
    • Clear error logs
      DELETE
  • Commands
    • Folders
      • Create a folder
      • Delet a folder
      • Get all folders
    • Get Commands
    • Get Command Details
    • Create Command
    • Edit Command
    • Delete Command
  • Broadcast
    • Get broadcast tasks
    • Delete Broadcast task
    • Pause broadcast task
    • Resume broadcast task
  • Chats
    • Get chats
    • Block chat
    • Unblock chat
  • Properties
    • Get properties
    • Delete property
  • Libraries
    • Get libraries
  • Admin Panel
    • Get panels
    • Save panel value
  1. Bots

Launch or Stop Bot

POST
/bots/{id}/status
Use this endpoint to launch a bot

Request

Path Params

Query Params

Body Params application/jsonRequired

Examples
{
    "status": "start_launch"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST '/bots/1234/status?api_key=UKDZu-c68cubrIbniuE2P_nWj0p5r4IHARNrAV-I' \
--header 'Content-Type: application/json' \
--data-raw '{
    "status": "start_launch"
}'

Responses

🟢200Success
application/json
Get updated bot
Body

Example
{
    "id": 2792787,
    "name": "My new bot",
    "token": "110201543:AAHdqTcvCH1vGWJxfSeofSAs0K5PALDsaw that",
    "created_at": "2025-10-25T10:14:49.880Z",
    "updated_at": "2025-10-25T10:14:50.181Z",
    "csv_url": "string",
    "last_run_at": null,
    "status_code": null,
    "farm_id": 123,
    "store_bot_id": 123,
    "whatsapp_token": "String",
    "git_remote": "string",
    "rsa_public_key": "string",
    "whatsapp_api_url": "stringll",
    "google_analytics_ua_key": null,
    "is_protected": false,
    "cloud_id": 123,
    "production_mode": null,
    "data_volume": null,
    "dead_at": null,
    "pic_url": null,
    "invalid_token_at": null,
    "status": "works"
}
Previous
Edit Bot
Next
Start CSV import
Built with