With the Listen Notes API, you can build applications that:
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`,
},
})
},
})
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