| Torrent Total: 21,229,879 | Verified Torrents: 10,994,293 | Torrents Today: 86,257 |
10 JUL 2026 - Back up to full speed! Let's be honest: for the last few months, TorrentFunk was painfully slow. Pages crawled, searches dragged, and just loading the site tested everyone's patience. We hunted the problem down to our network and rebuilt it from the ground up — smarter caching, a much bigger and faster connection, and a lot of fine-tuning under the hood. The difference is night and day: the site now loads in a fraction of a second. No more waiting around. Thanks for sticking with us through the slow spell. Now go discover your funk! TorrentFunk APIsConnect to TorrentFunk programmatically — a free JSON API for your own website, app or script, and classic RSS feeds for your torrent client or feed reader. No API key, no registration. JSON APIAll endpoints are Search torrentsGET /api/search.json
curl "https://www.torrentfunk.com/api/search.json?q=ubuntu&category=software&limit=5" Latest torrentsGET /api/latest.json The newest torrents on the site, newest first. Takes the same curl "https://www.torrentfunk.com/api/latest.json?category=movies&verified=1&limit=10" Response format{
"status": "ok",
"endpoint": "search",
"page": 1,
"limit": 20,
"count": 20,
"total_found": 2260,
"query": "ubuntu",
"results": [
{
"id": 50098416,
"name": "Ubuntu Linux Bible 11E",
"infohash": "45bb7b3ac77116ef4e7ec743e2a8319caddf87b1",
"magnet": "magnet:?xt=urn:btih:45bb7b3ac7...&dn=Ubuntu%20Linux%20Bible%2011E",
"torrent_file": "https://ft.t0r.space/tor/50098416.torrent",
"url": "https://www.torrentfunk.com/torrent/50098416/ubuntu-linux-bible-11e.html",
"category": "eBooks",
"category_id": 8,
"size_bytes": 8488590,
"size": "8.1 MB",
"seeds": 5,
"peers": 1,
"verified": false,
"added": 1766370340,
"added_iso": "2025-12-22T02:25:40+00:00"
}
]
}
Categories
ErrorsErrors come back as JSON with a matching HTTP status code: { "status": "error", "error": "limit must be 1-100" }
ExamplesJavaScript (browser or Node): const res = await fetch("https://www.torrentfunk.com/api/search.json?q=debian&limit=5");
const data = await res.json();
for (const t of data.results) {
console.log(t.name, t.size, t.magnet);
}PHP: $data = json_decode(file_get_contents(
"https://www.torrentfunk.com/api/latest.json?category=television&limit=10"
), true);
foreach ($data["results"] as $t) {
echo $t["name"] . " - " . $t["seeds"] . " seeds\n";
}Python: import requests
data = requests.get("https://www.torrentfunk.com/api/search.json",
params={"q": "ubuntu", "verified": 1}).json()
for t in data["results"]:
print(t["name"], t["magnet"])RSS FeedsEvery feed is standard RSS 2.0 with a All torrents/rss.xmlVerified only/verified/rss.xmlMovies/movies/rss.xmlTelevision/television/rss.xmlGames/games/rss.xmlMusic/music/rss.xmlSoftware/software/rss.xmlAnime/anime/rss.xml RSS search feedsTurn any search into a feed — put your query (words separated by dashes) in the URL, optionally scoped to a category. Results are ordered by seeds, 50 items per feed. GET /rss/<query>.xml GET /rss/<category>/<query>.xml https://www.torrentfunk.com/rss/big-buck-bunny.xml https://www.torrentfunk.com/rss/television/one-piece.xml Valid categories for search feeds: Fair use & cachingResponses carry |




