This API allows you to fetch the Seed and Leecher count for a magnet link.
If you want to resolve a single magnet link call
https://cryptocommit.org/m/single
with a base 64 encoded magnet link, for example
This will return a JSON object like
{magnetLink: 'magnet:?xt=urn:btih:QRSPIZ67VI2LW2246F3F7KL…2Ftracker.opentrackr.org%3A1337%2Fannounce', seeds: 1939, leechers: 17}
if you want to resolve multiple magnet links, call
https://cryptocommit.org/m/multi
in a post request it will accept an array of up to 10 raw magnets (not base 64 encoded) like
['magnet:?xt=urn:btih:QRSPIZ67VI2LW2246F3F7KLVE2BLY3RR&dn=gimp-2.10.30-setup.exe&xl=257259032&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce', 'magnet:?xt=urn:btih:QRSPIZ67VI2LW2246F3F7KLVE2BLY3RR&dn=gimp-2.10.30-setup.exe&xl=257259032&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce']
it will return a Json object like
[{"magnetLink":"magnet:?xt=urn:btih:e8e....hant.org%3A12710","seeds":325,"leechers":18},{"magnetLink":"magnet:?xt=urn:btih:ef232....%1A2421450","seeds":344,"leechers":28}]