Bots Business Api
  1. Properties
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
    • Get Bots
    • Edit Bot
    • Launch or Stop Bot
    • Start CSV import
    • CSV import task status
    • Delete Bot
    • Copy Bot
    • Git export
    • Git import
    • Get installed libraries
    • Install Lib
    • Uninstall lib
    • Get error log
    • Clear error logs
  • 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
      GET
    • Delete property
      DELETE
  • Libraries
    • Get libraries
  • Admin Panel
    • Get panels
    • Save panel value
  1. Properties

Get properties

GET
/bots/{id}/properties
Use this endpoint to retrieve a list of properties created for your bot or for any specific users.

Request

Path Params

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/123/properties?api_key=UKDZu-c68cubrIbniuE2P_nWj0p5r4IHARNrAV-I'

Responses

🟢200Success
application/json
You will have an array of all properties
Body

Example
[
    {
        "id": 831874831,
        "user_id": null,
        "bot_id": 2776468,
        "name": "min_balance",
        "created_at": "2025-10-27T08:29:20.243Z",
        "updated_at": "2025-10-27T08:29:20.243Z",
        "size": 3,
        "value": "100",
        "type": "string"
    },
    {
        "id": 831874760,
        "user_id": 42470958,
        "bot_id": 2776468,
        "name": "name",
        "created_at": "2025-10-27T08:28:43.367Z",
        "updated_at": "2025-10-27T08:28:43.367Z",
        "size": 12,
        "user": {
            "first_name": "ɪ ᴀᴍ ᴄᴄ",
            "last_name": "string",
            "username": "nirjon",
            "telegramid": 7378059553
        },
        "value": "captain cool",
        "type": "string"
    }
]
Previous
Unblock chat
Next
Delete property
Built with