View as Markdown
Listen Notes icon

Listen Notes ACTION

Get Podcast Details

Get the details of the selected podcast. See the documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Listen Notes account once, then configure and run Get Podcast Details from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "listen_notes-get-podcast-details",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    listen_notes: { authProvisionId: "apn_xxxxxxx" },
    q: "Query",
    language: "Language",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Get Podcast Details inputs
Property Type Description
q Query string
Search term, e.g., person, place, topic... You can use double quotes to do verbatim match
Optional
language Language string
Limit search results to a specific language. If not specified, it'll be any language
Optional Dynamic
offset Offset string
The offset parameter is used to paginate through search results
Optional
id Podcast or Episode ID string
The ID of the podcast or episode
Required Dynamic
nextEpisodePubDate Next Episode Pub Date string
For episodes pagination. It's the value of next_episode_pub_date from the response of last request. It is an Epoch Unix timestamp in milliseconds, i.e.: 1479154463000
Optional
sort Sort string
What type of contents do you want to search for?
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
listen_notes-get-podcast-details
Version
0.0.3
App
Listen Notes
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes