@extends('layouts.main') @section('content')

{{ $title }}

Here you can find RSS feeds for various categories and content types. These feeds provide either descriptions or direct NZB downloads based on your preferences.

RSS feed URLs require api_token for access by feed readers or other non-browser clients. Token errors return JSON with matching HTTP statuses: 400 for a missing token, 401 for invalid or unverified tokens, 403 for suspended accounts, and 429 for request limits.

@auth

Your API Token

@endauth

RSS Configuration Options

Parameter Description Example
api_token Add this to your feed URL to allow NZB downloads without logging in &api_token={{ auth()->user()->api_token ?? 'YOUR_TOKEN' }}
del=1 Remove NZB from your cart after download &del=1
dl=1 Change the default link to download an NZB &dl=1
num=50 Change the number of results returned (default: 25, max: 100) &num=50
airdate=20 Return TV shows only aired in the last x days (default: all) &airdate=20
Most NZB clients which support NZB RSS feeds will appreciate the full URL, with download link and your user token. The feeds include additional attributes to help provide better filtering in your NZB client, such as size, group, and categorization.
Pro Tip: If you want to chain multiple categories together or do more advanced searching, use the API, which returns its data in an RSS-compatible format.

Available Feeds

General Feeds
Full Site Feed Open Feed
You can define limit and num parameters, which will decide how many items to show and what offset to use (default values: limit 100 and offset 0).
My Cart Feed Open Feed
My Shows Feed Open Feed
My Movies Feed Open Feed
Trending Feeds

Most downloaded content in the last 48 hours (updated hourly)

Trending Movies Open Feed
Trending TV Shows Open Feed
Parent Categories
@forelse($parentcategorylist ?? [] as $category)
{{ $category['title'] }} Open Feed
@empty

No parent categories available

@endforelse
Sub Categories
@forelse($categorylist ?? [] as $category) @if(!empty($category['title']))
{{ $category['title'] }} Open Feed
@endif @empty

No sub categories available

@endforelse
{{-- Copy to clipboard functionality moved to csp-safe.js --}} @endsection