Skip to main content
GET
/
monthly-active-users
/
growth-trend
/
{handle}
Monthly Active Users Based On Handle
curl --request GET \
  --url https://ebn.telemetree.io/public-api/monthly-active-users/growth-trend/{handle} \
  --header 'x-api-key: <api-key>'
import requests

url = "https://ebn.telemetree.io/public-api/monthly-active-users/growth-trend/{handle}"

headers = {"x-api-key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};

fetch('https://ebn.telemetree.io/public-api/monthly-active-users/growth-trend/{handle}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://ebn.telemetree.io/public-api/monthly-active-users/growth-trend/{handle}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://ebn.telemetree.io/public-api/monthly-active-users/growth-trend/{handle}"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("x-api-key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://ebn.telemetree.io/public-api/monthly-active-users/growth-trend/{handle}")
.header("x-api-key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://ebn.telemetree.io/public-api/monthly-active-users/growth-trend/{handle}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "data": [
    {
      "avg_daily_users_gained": 865314.2333333333,
      "handle": "hamster_kombat_bot",
      "link": "https://t.me/hamster_kombat_bot",
      "month_ago_change": 36.087077012085494,
      "month_ago_users": 82146607,
      "name": "Hamster Kombat",
      "profile_photo": "",
      "today_users": 111790917,
      "week_ago_change": 5.024245802406793,
      "week_ago_users": 106442961,
      "yesterday_change": 0.2304114989940729,
      "yesterday_users": 111533930
    }
  ],
  "status_code": 200,
  "message": "Success"
}
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}

Authorizations

x-api-key
string
header
required

Your API Key (Dashboard->Settings)

Path Parameters

handle
string
required

Handle of the application

Response

Successful Response

data
AppMonthlyActiveUsersData · object[]
required

List of bot active users data

Example:
[
{
"avg_daily_users_gained": 865314.2333333333,
"handle": "hamster_kombat_bot",
"link": "https://t.me/hamster_kombat_bot",
"month_ago_change": 36.087077012085494,
"month_ago_users": 82146607,
"name": "Hamster Kombat",
"profile_photo": "",
"today_users": 111790917,
"week_ago_change": 5.024245802406793,
"week_ago_users": 106442961,
"yesterday_change": 0.2304114989940729,
"yesterday_users": 111533930
}
]
status_code
integer
required

Status code

Example:

200

message
string
required

Message

Example:

"Success"