Loading API DOCS...

TG Channel Info API

Get any telegram channel & group full information via username with this API.

Endpoint

GET https://api.lmnx9.shop/telegram/channel.php?username=

Code Examples

cURL
curl -X GET "https://api.lmnx9.shop/telegram/channel.php?username=" -H "Content-Type: application/json"
JavaScript
fetch("https://api.lmnx9.shop/telegram/channel.php?username=")
  .then(function(r){return r.json()})
  .then(function(d){console.log(d)});
Python
import requests
r = requests.get("https://api.lmnx9.shop/telegram/channel.php?username=")
print(r.json())
PHP
<?php
$d = file_get_contents("https://api.lmnx9.shop/telegram/channel.php?username=");
print_r(json_decode($d, true));

Example Response

{
    "success": true,
    "cached": false,
    "lmnxdata": {
        "channel": {
            "id": -1002029488467,
            "title": "DARK TEAM LMNx9 v2",
            "username": "darsulhaq",
            "display_name": "DARK TEAM LMNx9 v2",
            "description": "",
            "type": "channel"
        },
        "status": {
            "verified": false,
            "scam": false,
            "fake": false,
            "restricted": false,
            "creator": false
        },
        "statistics": {
            "members": 762,
            "online": 0,
            "unread_count": 0
        },
        "features": {
            "broadcast": true,
            "megagroup": false,
            "forum": false,
            "slowmode": false,
            "join_request": false,
            "join_to_send": false
        },
        "photo": {
            "available": true,
            "photo_id": 6.071025862078829e+18,
            "dc_id": 5,
            "url": "https://api.lmnx9.shop/telegram/photos/6071025862078828369_c_5.jpg"
        },
        "activity": {
            "created": 1742377511,
            "reactions": [
                {
                    "_": "reactionEmoji",
                    "emoticon": "❤"
                },
                {
                    "_": "reactionEmoji",
                    "emoticon": "💋"
                },
                {
                    "_": "reactionEmoji",
                    "emoticon": "💯"
                },
                {
                    "_": "reactionEmoji",
                    "emoticon": "😈"
                }
            ]
        }
    },
    "developer": "DARK LMNx9",
    "telegram": "@x_LMNx9",
    "website": "https://lmnx9.shop"
}