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

POST
https://appapi.bots.business/v2/auth
Use this endpoint to register new users on Bots.Business platform

Request

Body Params application/jsonRequired

Example
{
    "email": "user@example.com",
    "password": "#password123",
    "password_confirmation": "#password123"
}

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 POST 'https://appapi.bots.business/v2/auth' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "user@example.com",
    "password": "#password123",
    "password_confirmation": "#password123"
}'

Responses

🟢200Success
application/json
Headers

Body

Example
{
    "status": "success",
    "data": {
        "id": 52798260,
        "first_name": null,
        "last_name": null,
        "username": null,
        "telegramid": null,
        "created_at": "2025-10-25T08:43:06.772Z",
        "language_code": null
    }
}
Previous
Get Telegram login URL
Next
Telegram login
Built with