Bots.Business API v2
  1. Authentication
Bots.Business API v2
  • Bots.Business API v2
    • BB Api docs
    • Authentication
      • Sign in
        POST
      • Get Telegram login URL
        POST
      • Sign up
        POST
      • Telegram login
        GET
      • Reset Password
        POST
    • 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
      • 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 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. Authentication

Sign in

POST
https://api.bots.business/v2/auth/sign_in
Last modified:2025-10-31 10:37:20
Use this endpoin to login your bots business account and obtain credentials, only the headers you will need to make each request and obtaine your api_key.

Request

Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
Headers

Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.bots.business/v2/auth/sign_in' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "user@example.com",
    "password": "#mypassword123"
}'
Response Response Example
{
    "data": {
        "id": 22425807,
        "first_name": "Captain",
        "last_name": "Cool",
        "username": "username",
        "telegramid": 123456789,
        "language_code": "en"
    }
}
Modified at 2025-10-31 10:37:20
Previous
BB Api docs
Next
Get Telegram login URL
Built with