Note 1: ⚠️ If you need API for buying stars and telegram premium (We Support Both KYC and no KYC Fragment), contact me on Telegram @JailBroken.
Looking for an API to purchase Telegram Stars and Telegram Premium? We provide a trusted and seamless solution for businesses and individuals.
- ✅ Trusted by 100+ Businesses – Proven reliability and performance
- ✅ Secure & Fast Transactions – Get your purchases instantly
- ✅ 24/7 Live Support – We're always here to assist you
- ✅ Easy API Integration – Automate your purchases with ease
- ✅ Regular Updates & News – Stay informed with our latest services
- 1-Week Free Trial: Get started with our API without paying any fee for the first 7 days.
- Stars & Premium Prices: Same as Fragment, sometimes cheaper for loyal users.
- Negotiable Fees: Fees start as low as 1% and can go even lower based on volume and loyalty.
- Special Discounts & Cashbacks: Enjoy cashbacks on special days and discounts for repeat customers.
For the latest news and updates, join our official channel:
📢 @Fragment_API_News
Need assistance or want to integrate our API?
📩 Message us on Telegram: @JailBroken
🚀 Start using the best Telegram Stars & Premium API today!
Note 2: ⚠️ This package is still under develop and needs your contribution. Sometimes maybe you get an error, It's normal and fine; You can open an issue to keep me informed.
$ pip install ton-fragmentAlso can be found on pypi
For Usernames(x, y) and Numbers(x, y): x can be one of ['auction', 'sold', 'sale'] and it's required. y is not required it can be ['listed', 'ending', 'price_asc']. the default is empty which triggerd price high to low function.
contact me on Telegram @JailBroken or [email protected].
contact me on Telegram @JailBroken or [email protected].
contact me on Telegram @JailBroken or [email protected].
Get All Usernames - Top Auctions - Price high to low:
from ton_fragment.usernames.usernames import Usernames
all_usernames = Usernames('auction')
print(all_usernames.result)Get All Usernames - Top Auctions - Price low to high:
from ton_fragment.usernames.usernames import Usernames
all_usernames = Usernames('auction', 'price_asc')
print(all_usernames.result)Get All Usernames - Top Auctions - sort by recently listed:
from ton_fragment.usernames.usernames import Usernames
all_usernames = Usernames('auction', 'listed')
print(all_usernames.result)Get All Usernames - Top Auctions - sort by ending soon:
from ton_fragment.usernames.usernames import Usernames
all_usernames = Usernames('auction', 'ending')
print(all_usernames.result)Get All Numbers - For Sale:
from ton_fragment.numbers.numbers import Numbers
all_numbers = Numbers('sale')
print(all_numbers.result)Get All Numbers - Sold - sort by recently listed:
from ton_fragment.numbers.numbers import Numbers
all_numbers = Numbers('sold', 'listed')
print(all_numbers.result)Get All Numbers - For Sale - sort by ending soon:
from ton_fragment.numbers.numbers import Numbers
all_numbers = Numbers('sale', 'ending')
print(all_numbers.result)Get a brief information about a number
from ton_fragment.numbers.number import Number
my_number = Number('8888888')
print(my_number.data)
print(my_number.number)
print(my_number.status)
print(my_number.ends_in)Feel free to submit issues and enhancement requests or contact me via vida.page/nima.
Please refer to each project's style and contribution guidelines for submitting patches and additions. In general, we follow the "fork-and-pull" Git workflow.
- Fork the repo on GitHub
- Clone the project to your own machine
- Update the Version inside init.py
- Commit changes to your own branch
- Push your work back up to your fork
- Submit a Pull request so that we can review your changes

