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.
Include your API token in the request header:
Authorization: Bearer your-api-token
Request
{
"username": "telegram_username"
}
Response
{
"name": "John Doe",
"profile_photo": "https://tcdn.tasim.me/photos/abc123.jpg",
"type": "account"
}
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.
Try it out: