https://github.com/doawoo/telegram_fetch
Quick way to fetch telegram user info by username
https://github.com/doawoo/telegram_fetch
elixir telegram
Last synced: 11 months ago
JSON representation
Quick way to fetch telegram user info by username
- Host: GitHub
- URL: https://github.com/doawoo/telegram_fetch
- Owner: doawoo
- License: mit
- Created: 2025-07-10T15:30:02.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-07-10T15:31:35.000Z (12 months ago)
- Last Synced: 2025-08-10T11:50:35.561Z (11 months ago)
- Topics: elixir, telegram
- Language: Elixir
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TelegramFetch
A simple Elixir library to help fetch account information from Telegram users by username.
### Usage:
```elixir
TelegramFetch.fetch_by_username("username_here")
```
```elixir
{:ok,
%TelegramFetch.TelegramInfo{
bio: "Account Bio Here",
avatar: "https://telegram.org/img/t_logo_2x.png",
display_name: "Display Name Here",
username: "username_here"
}}
```