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

Get Bots

GET
/bots
Use this endpoint to get list of your bots.

Request

Query Params

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 --location --request GET '/bots?api_key=UKDZu-c68cubrIbniuE2P_nWj0p5r4IHARNrAV-I'

Responses

🟢200Success
application/json
You will get an array with multiple bots, you can get empty array if there is no bots
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": "stopped"
  }
]
Previous
Create Bot
Next
Edit Bot
Built with