Skip to main content
GET
/
api
/
users
/
list
List users
curl --request GET \
  --url http://localhost:8080/api/users/list \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "username": "<string>",
    "first_name": "<string>",
    "last_name": "<string>",
    "is_bot": true
  }
]

Documentation Index

Fetch the complete documentation index at: https://botmux-dependabot-go-modules-modernc-org-sqlite-1-50-0.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key with bmx_ prefix. Obtain via /api/auth/api-keys.

Query Parameters

chat_id
integer
required

Chat ID

q
string

Search query (matches username or name)

limit
integer
default:50
offset
integer
default:0

Response

Array of users

id
integer

Telegram user ID

username
string

Telegram username (without @)

first_name
string

First name

last_name
string

Last name

is_bot
boolean

Whether this user is a bot