Telegram CDN API

Telegram doesn't provide a straightforward way to fetch profile data. This service uses Telegram Bot API to retrieve names and profile photos for users, channels, and groups. Useful for building apps that need to display Telegram entity information without requiring end users to authenticate.

Authentication

Include your API token in the request header:

Authorization: Bearer your-api-token

Endpoint

POST /api/search

Request

{
  "username": "telegram_username"
}

Response

{
  "name": "John Doe",
  "profile_photo": "https://tcdn.tasim.me/photos/abc123.jpg",
  "type": "account"
}

Example

curl -X POST https://tcdn.tasim.me/api/search \
  -H "Authorization: Bearer your-token" \
  -H "Content-Type: application/json" \
  -d '{"username": "username"}'

Photos expire after 24 hours. Username format accepts both @username and username.

Test API

Try it out:

API Access

Request access via Telegram or email: