Check NZB availability across Usenet providers before downloading. Built by the community, for the community.
Want to start reporting? You need an API key. Join the StreamNZB Discord to request one.
Get instant feedback on file availability across multiple providers, saving bandwidth and time.
Users report availability status, creating a comprehensive database that benefits everyone.
Ask which releases we have for a title. Filter by indexer and see availability per provider.
A single success report proves file existence. Failures may be user-specific issues.
Bad or removed releases get reported by the community, keeping availability data accurate over time.
Easy integration with any language or framework. Full API documentation available.
Use the indexer's release URL (the GUID link) as the identifier. Content is tagged with IMDb ID (movies) or TVDb ID + season + episode (TV).
Query by release URL to get availability across providers, or list releases by content (IMDb ID or TVDb ID + season + episode) and optionally filter by indexer.
Report the availability with release URL, release name, download link, provider hostname, and content IDs: IMDb ID for movies, or TVDb ID + season + episode for TV.
Use the indexer URL (GUID link) for the release.
curl "http://localhost:8080/api/v1/status?url=https%3A%2F%2Fnzbgeek.info%2Fgeekseek.php%3Fguid%3D..."Ask which releases we have for a movie or TV episode. Optionally filter by indexer.
curl "http://localhost:8080/api/v1/releases?imdb_id=tt0386676"
# TV: ?tvdb_id=2710&season=2&episode=3
# Filter: &indexers=nzbgeek.info,drunken.slugSend url, release_name, size (bytes), provider_url, status, and content IDs. download_link is auto-generated from the URL. Use the X-API-Key header with your API key— request one in our Discord if you need it.
curl -X POST http://localhost:8080/api/v1/report \
-H "X-API-Key: your-api-token" \
-H "Content-Type: application/json" \
-d '{
"url": "https://nzbgeek.info/geekseek.php?guid=...",
"release_name": "Show.Name.S01E02.720p.WEB.x264-GROUP",
"size": 1073741824,
"provider_url": "news.eweka.nl",
"status": true,
"imdb_id": "tt0386676",
"tvdb_id": "2710",
"season": 2,
"episode": 3
}'