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

{{ $title }}

Here lives the documentation for the API v2 for accessing NZB and index data. API functions can be called by providing an API token.

@if($loggedin ?? false)

Your API Credentials

@endif

Available Functions

Function Description Example
Capabilities Reports the capabilities of the server. Includes information about the server name, available search categories and version number of the nntmux being used.
No credentials required
capabilities
Search Returns a list of NZBs matching a query. You can filter by site category by including a comma separated list of categories.
TV Search Returns a list of NZBs matching a query, category, TVRageID, season or episode.
ID OPTIONS
rid=25056 - TVRage
tvdbid=153021 - TVDB
traktid=1393 - Trakt
tvmazeid=73 - TVMaze
imdbid=1520211 - IMDB
tmdbid=1402 - TMDB
Movies Returns a list of NZBs matching a query, an ID (IMDB, TMDB, or Trakt) and optionally a category.
ID OPTIONS
imdbid=1418646 - IMDB
tmdbid=43418 - TMDB
traktid=29200 - Trakt
Details Returns detailed information about an NZB. @if($loggedin ?? false) details?id=9ca52909ba9b9e5e6758d815fef4ecda @endif
Get NZB Downloads the NZB file associated with an ID. @if($loggedin ?? false) getnzb?id=9ca52909ba9b9e5e6758d815fef4ecda @endif

Output Format

JSON Format

All information is returned in JSON format.

Note: When using these API endpoints in your applications, always send your API token with each request.
@endsection