popcorn_api 1.1.5 copy "popcorn_api: ^1.1.5" to clipboard
popcorn_api: ^1.1.5 copied to clipboard

An easy way to get data from the Popcorn Time API. Documentation is available at https://popcorn-api.js.org/

PopcornApi #

An easy way to get data from the Popcorn Time API. Documentation is available at https://popcorn-api.js.org/

Usage #

Popcorn-API comes with 4 routes you can use: Anime, Shows, Movies Random To acess a route, you can use: Popcorn.route

Examples #

import "package:popcorn_api/src/Popcorn.dart";
Popcorn.random("movie").then((c)async{
 print(c.first.item);
});
  
// get animes with keyword ga, and get a random result
Popcorn.animes.search({
  "keywords":"ga"
}).then((c)async{
  print(c.random.item);
});

//Params to search() function
Popcorn.shows.search({
  "keywords":"keywords",
  "page":1,
  "sort":"rating",
  "genre":"all"
});

You can found more examples in Here

0
likes
25
pub points
0%
popularity

Publisher

unverified uploader

An easy way to get data from the Popcorn Time API. Documentation is available at https://popcorn-api.js.org/

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

http

More

Packages that depend on popcorn_api