Project Minato
Feeds

RSS Feed

Query parameters, response format, and examples for the Minato RSS feed.

The RSS feed returns a standard RSS 2.0 document. It supports the same filtering as the search API, making it suitable for RSS readers, webhook triggers, and custom automation.

Endpoint: GET /api/v1/feeds/rss

Required key type: rss or custom

Query parameters

ParameterTypeDefaultDescription
apikeystringRequired. Your API key.
qstring""Free-text search query. Supports the same Minato Query syntax as the search box.
typestringFilter by content type (movie, tv, anime, music, etc.).
sortstringpublishedAt:descSort order. See sort values below.
limitnumber50Number of items to return. Clamped to 1–100.
seedersnumberMinimum seeder count.

Sort values

ValueDescription
publishedAt:descNewest first (default)
publishedAt:ascOldest first
seeders:descMost seeded first
seeders:ascLeast seeded first
size:descLargest first
size:ascSmallest first
trackerTitle:ascTitle A → Z
trackerTitle:descTitle Z → A

Response format

The response is Content-Type: application/rss+xml; charset=utf-8. Each torrent becomes one <item>.

RSS elementSourceNotes
<title>Tracker titleThe raw title reported by the scraper
<guid>Info hashisPermaLink="false"
<link>Magnet link or source URLPrefers the magnet link when available
<pubDate>publishedAt or createdAtRFC 2822 date
<enclosure>Same URL as <link>type="application/x-bittorrent", length is the torrent size in bytes
<description>Size, seeders, leechers, type, sourcePlain text, one field per line
<category>Content typemovie, tv, etc. — empty if unknown

Examples

Fetch the 10 newest movies:

curl "https://your-minato/api/v1/feeds/rss?apikey=mk_xxx&type=movie&limit=10"

Search for a specific title with at least 5 seeders:

curl "https://your-minato/api/v1/feeds/rss?apikey=mk_xxx&q=breaking+bad&seeders=5"

Most-seeded results across all types:

curl "https://your-minato/api/v1/feeds/rss?apikey=mk_xxx&sort=seeders:desc"

Error responses

Errors are returned as a minimal RSS 2.0 document with the error message in <channel><description>.

HTTP statusCause
400apikey parameter is missing
401API key is invalid or expired
403API key type is not permitted to access the RSS feed

On this page