Skip to content

Module to run simple queries on Kickass Torrents' JSON API

Notifications You must be signed in to change notification settings

isdampe/kat-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

#KAT-API-JSON A simple Node module for fetching data from the Kickass Torrents API in json format.

##Installation

npm install kat-api-json

##Usage Get the most popular entries from a category.

var kat = require("kat-api-json");
kat.mostPopular({
  category: "tv",
  page: 1
},function(err,data){
  if ( err ) {
    throw err;
  }
  
  console.log(data);

});

About

Module to run simple queries on Kickass Torrents' JSON API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published