Unofficial API for TorrentBD
RESTful API for accessing TorrentBD data and services.
Available Endpoints
/search
GET
Search for torrents on TorrentBD
/profile
GET
Get user profile information
Quick Example
Results will be displayed in the response preview below
curl -X GET "https://tbd-api.tanmoy.xyz/search?query=ubuntu" -H "accept: application/json"
Response
Live Data
200 OK
{ "result": [ { "title": "Ubuntu 22.04 LTS", "size": "3.8 GB", "category": "Operating System", "uploader": "admin", "download_link": "https://torrentbd.com/torrent/12345" }, // Loading real data... ] }