Listen Notes

Podcast search engine

Go to site
Explore
/
Apps
/
Listen Notes

Listen Notes API Integrations

Build and run workflows using the Listen Notes API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

With the Listen Notes API, you can build applications that:

  • Get podcast descriptions and metadata
  • Search for podcasts by keyword
  • Fetch individual episodes
  • Recommend new podcasts to users
  • And more!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    listen_notes: {
      type: "app",
      app: "listen_notes",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://listen-api.listennotes.com/api/v2/search`,
      headers: {
        "X-ListenAPI-Key": `${this.listen_notes.$auth.api_key}`,
      },
      params: {
        "q": `programming`,
      },
    })
  },
})

Authentication

Listen Notes uses API keys for authentication. When you connect your Listen Notes account, Pipedream securely stores the keys so you can easily authenticate to Listen Notes APIs in both code and no-code steps.

Sign in and copy your API key from the Listen Notes API Documentation