An open API service indexing awesome lists of open source software.

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

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"
}}
```