View as Markdown
Listen Notes icon

Listen Notes ACTION

Full Search

Full-text search on episodes, podcasts, or curated lists of podcasts. 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 Full Search 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-full-search",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    listen_notes: { authProvisionId: "apn_xxxxxxx" },
    q: "Query",
    sortByDate: "Sort By Date",
  },
})

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.

Full Search inputs
Property Type Description
q Query string
Search term, e.g., person, place, topic... You can use double quotes to do verbatim match
Required
sortByDate Sort By Date string
Sort by date. If 0, then sort by relevance. If 1, then sort by date
Optional
type Type string
What type of contents do you want to search for?
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

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-full-search
Version
0.0.3
App
Listen Notes
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes