Overview

The uNoGS API lets you search Netflix content across all global regions at once, showing which countries have a title available and its local rating. It is accessed via RapidAPI and requires a RapidAPI subscription key. This is especially useful for developers building Netflix availability trackers or VPN recommendation tools.

Beginner Tip

Subscribe to uNoGS on RapidAPI and use your RapidAPI key in the x-rapidapi-key header. Start with the /search/titles endpoint to look up a movie or show and see its regional availability.

Available Data

The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.

uNoGS data via REST API

Example Response

Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.

JSON Response · Illustrative
{
  "status": "success",
  "data": {
    "result": "Data from uNoGS",
    "description": "Unofficial Netflix Online Global Search, Search all netflix regions in one place",
    "timestamp": "2025-01-15T10:00:00Z"
  }
}

Field Reference

title Name of the Netflix title.
type Content type: movie or show.
country Country code where the title is available on Netflix.
rating Content rating for the title in that region (e.g., PG-13, TV-MA).
netflix_id Netflix internal numeric ID for the title.

Implementation Example

Calls a real endpoint of this API. Replace any placeholder credentials with your own key.

Request
const url = "https://unogsng.p.rapidapi.com/search/titles?query=Inception&type=movie";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
  headers: {
  "X-API-Key": "YOUR_API_KEY"
  }
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data);

What Can You Build?

Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.

Common Errors & Troubleshooting

Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.

403 Forbidden Missing RapidAPI key or using a free-tier key that does not have access to this API.
Subscribe to the uNoGS plan on RapidAPI and pass your key in the x-rapidapi-key header.
Empty results Searching for a title that is not currently on Netflix in any region.
Try broader search terms or remove filters; not all titles are on Netflix globally.
429 Too Many Requests Exceeding the monthly request quota on your RapidAPI plan.
Upgrade your RapidAPI subscription or cache results to reduce the number of API calls.

Metadata Score Breakdown

Estimated from metadata — endpoint not independently tested

This score is estimated from observable metadata — HTTPS support, authentication model, declared CORS, and documentation reachability — because the API requires authentication or exposes no publicly testable endpoint. The five-signal breakdown is only shown for live-tested APIs.

Metadata estimate · endpoint not independently tested

Technical Specifications

Auth API Key
HTTPS REQUIRED
CORS YES
Category Video
Difficulty Intermediate
Listing details not endpoint-verified

Related Tags

Similar APIs

View All →