Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

podcast-index-api

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

podcast-index-api

JS lib for the Podcast Index API

  • 1.1.8
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
216
increased by36.71%
Maintainers
1
Weekly downloads
 
Created
Source

Podcast Index API Javascript library

A Podcast Index API library for Node.js

pipeline status coverage report Install size npm Downloads

Homepage | Source | npm

Installation

Install with npm

npm install podcast-index-api --save

Configuration

Sign up for API credentials here: https://api.podcastindex.org/

Require the lib from your javascript file

const api = require('podcast-index-api')("YOUR_API_KEY_HERE", "YOUR_API_SECRET_HERE")

Usage

Using Async/Await

const results = await api.searchByTerm('Joe Rogan Experience')

Using Promise

api.searchByTerm('Joe Rogan Experience').then(results => { console.log(results) })

Functions

  • searchByTerm(term: String)
  • podcastsByFeedUrl(url: String)
  • podcastsByFeedId(id: Number)
  • podcastsByFeedItunesId(itunesId: Number)
  • addByFeedUrl(url: String)
  • episodesByFeedId(id: Number)
  • episodesByFeedUrl(url: String)
  • episodesByItunesId(itunesId: Number)
  • recentEpisodes(max: Number, exclude: String)

Keywords

FAQs

Package last updated on 17 Jan 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc