Objects | BASIC $0.00 / MO | PRO $20.00 / MO | ULTRA $50.00 / MO | MEGA $100.00 / MO |
---|---|---|---|---|
typeahead quota | QUOTA20000 / month then $0.001 each | QUOTA200000 / month then $0.001 each | QUOTA500000 / month then $0.001 each | QUOTA1000000 / month then $0.001 each |
full-text search quota | QUOTA2000 / month then $0.004 each | QUOTA20000 / month then $0.003 each | QUOTA50000 / month then $0.0025 each | QUOTA100000 / month then $0.002 each |
directory apis | QUOTA2000 / month then $0.002 each | QUOTA20000 / month then $0.0015 each | QUOTA50000 / month then $0.0015 each | QUOTA100000 / month then $0.0015 each |
Features | ||||
High resolution podcast artwork image | ![]() | ![]() | ![]() | |
Social accounts & urls | ![]() | ![]() | ![]() |
Thanks for using Listen Notes API! You must agree to and accept all of the Terms, or you don’t have the right to use the API.
If your application displays data fetched from Listen Notes API, you must show a 'Powered by Listen Notes' logo on the same screen / page with that data.
You can download the 'Powered by Listen Notes' logo here.
Applications using the Listen Notes API must not pre-fetch, cache, index, or store any Content on the server side.
Note that the id of podcast / episode, used to uniquely identify a podcast/ episode, is exempt from the caching restriction.
To utilize unirest for node.js install the the npm module:
$ npm install unirest
After installing the npm package you can now start simplifying requests like so:
var unirest = require('unirest');
unirest.("https://listennotes.p.rapidapi.com") .header("X-RapidAPI-Key", "undefined") .header("Content-Type", "application/x-www-form-urlencoded") .end(function (result) { console.log(result.status, result.headers, result.body); });