Skip to content
This repository was archived by the owner on Jul 29, 2025. It is now read-only.

Latest commit

 

History

5 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

uNoGS

npm package

uNoGS (unofficial Netflix online Global Search) allows anyone to easily search the global Netflix catalog.

Install

$ npm install unogs

Get Token

Usage

Basic

"use strict";

let uNoGS = require("unogs"),
    unogs = new uNoGS("token");

unogs.listCountries(function(err, docs){
    console.log(docs);
});

List of all Netflix Countries includes various Counts

unogs.listCountries(function(err, docs){
    console.log(docs);
});

Get New Releases per Country

unogs.newReleasePerCountry("BR", 10, 1, function(err, docs){
    console.log(docs);
});

This call allows you to add advanced search filter which allow you to pull specific information.

unogs.search("Iron Man", 1, function(err, docs){
    console.log(docs);
});

Get list of different variable sized images for this title

unogs.images(70080038, function(err, docs){
    console.log(docs);
});

Load all Season and Episode details for a Netflix Series

unogs.loadEpisodeDetails(70205012, function(err, docs){
    console.log(docs);
});

Pulls the IMDB info for a specific netflix id

unogs.loadIMDBInfo(70205012, function(err, docs){
    console.log(docs);
});

Load Title Details: Country Information, Audio, Subtitle, and season/episode counts

unogs.loadTitleDetails(70205012, function(err, docs){
    console.log(docs);
});

About

uNoGS (unofficial Netflix online Global Search) allows anyone to easily search the global Netflix catalog.

Resources

Stars

8 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages