Bots Business Api
  1. Demo Store
Bots Business Api
  • Get started
  • Authentication
    • Sign in
    • Get Telegram login URL
    • Sign up
    • 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
    • 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
      GET
    • Install demo bot
      POST
  • Get cloud plans
    GET
  • Schemas
    • Command Schema
    • User Public
    • Create & Edit Bot
    • Bot
  1. Demo Store

Get store bots

GET
https://appapi.bots.business/v2/store/collections
Use this endpoint to retrieve a list of demo bots available for installation. These pre-configured bots can help you quickly get started with various functionalities.

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 'https://appapi.bots.business/v2/store/collections?api_key=UKDZu-c68cubrIbniuE2P_nWj0p5r4IHARNrAV-I'

Responses

🟢200Success
application/json
A categorized list of available demo bots, organized by type and functionality for easy discovery and installation.
Body

Example
{
  "id": 9,
  "title": "Example Category",
  "description": "This is an example category description",
  "created_at": "2025-11-02T10:00:00.000Z",
  "updated_at": "2025-11-02T10:00:00.000Z",
  "five_store_bots": [
    {
      "id": 201,
      "parent_bot_id": 2000001,
      "name": "ExampleBot",
      "description": "This is an example bot description",
      "published": true,
      "installations_count": 1000,
      "created_at": "2025-10-15T08:30:00.000Z",
      "updated_at": "2025-11-02T09:45:22.123Z",
      "img_url": "https://i.imgur.com/example.png",
      "repository_url": "https://github.com/bots-business/ExampleBot",
      "is_protected": false
    }
  ]
}
🟠401
🟠404
Previous
Update admin panel values
Next
Install demo bot
Built with