Tor Mag share torrent magnet links via a URL anonymously using a short shortened friendly link.

The free and anonymous torrent magnet sharing and magnet string shortening platform.  Share magnets anonymously using a friendly & shortened URL.

Paste Magnet Links Below:

(Each magnet link must be valid and between 20 to 2000 characters in length)

(Separate multiple entries by a new line)


A maximum of 10 magnets per day can be created per user.


TorMag API

Create shortened magnet links using our API via a POST request.  The below examples show how to create shortened magnet links using our public API.  Please update the magnet links in the provided examples to your actual magnet links that you want shortened.

Show cURL Example

curl -L "https://tormag.ezpz.work/api/api.php?action=insertMagnets" -F "magnets[]=magnet:?xt=urn:btih:3F200842A6F7D6F0A1A03970F6414A39D4426E35&dn=The.Matrix-ASCII&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2710%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2780%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2730%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337&tr=http%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.tiny-vps.com%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce" -F "magnets[]=magnet:?xt=urn:btih:3F200842A6F7D6F0A1A03970F6414A39D4426E35&dn=The.Matrix-ASCII&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2710%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2780%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2730%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337&tr=http%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.tiny-vps.com%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce"

Show Python Example

#!/usr/bin/env python
# Python 3 TorMag Script Example
# dependencies:  sudo pip install requests

############################
#  Imports                 #
############################
import requests # sudo pip install requests
import json

############################
#  Variables               #
############################
# Update your magnets as part of the array...
# Can have multiple magnets up to the daily limit
apiUrl = "https://tormag.ezpz.work/api/api.php?action=insertMagnets"
data = {"magnets": 
			[
				"magnet:?xt=urn:btih:3F200842A6F7D6F0A1A03970F6414A39D4426E35&dn=The.Matrix-ASCII&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2710%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2780%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2730%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337&tr=http%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.tiny-vps.com%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce", 
				"magnet:?xt=urn:btih:3F200842A6F7D6F0A1A03970F6414A39D4426E35&dn=The.Matrix-ASCII&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2710%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2780%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2730%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337&tr=http%3A%2F%2Fp4p.arenabg.com%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.tiny-vps.com%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce"
			]
}
resp = requests.post(apiUrl, json=data)
responseJson = json.loads(resp.text)
if "magnetEntries" in responseJson:
	links = responseJson["magnetEntries"]
	if links:
		print(links)
else:
	print(responseJson["message"])

The API returns JSON, and any successfully created shortened links will be contained in the magnetEntries property which is an array of shortened URLs.


Torrent Quickies

Copy List of Torrent Tracker URLs | Download Deluge BitTorrent Client


Working...