GET
/
monthly-active-users
/
timeseries
/
{handle}
curl --request GET \
  --url https://ebn.telemetree.io/public-api/monthly-active-users/timeseries/{handle} \
  --header 'x-api-key: <api-key>'
{
  "name": "Hamster Kombat",
  "handle": "hamster_kombat_bot",
  "link": "https://t.me/hamster_kombat_bot",
  "timeseries_data": {
    "2024-11-13": 106442961,
    "2024-11-14": 111533930,
    "2024-11-15": 111790917
  },
  "status_code": 200,
  "message": "Success"
}

Authorizations

x-api-key
string
header
required

Your API Key (Dashboard->Settings)

Path Parameters

handle
string
required

Handle of the application

Query Parameters

days
integer
default:30
Required range: x >= 1

Response

200
application/json
Successful Response
name
string
required

Name of the bot

Example:

"Hamster Kombat"

handle
string
required

Handle of the bot

Example:

"hamster_kombat_bot"

Link to the bot

Example:

"https://t.me/hamster_kombat_bot"

timeseries_data
object
required

Timeseries data

Example:
{
  "2024-11-13": 106442961,
  "2024-11-14": 111533930,
  "2024-11-15": 111790917
}
status_code
integer
required

Status code

Example:

200

message
string
required

Message

Example:

"Success"