Developer docs

Listen Notes integration

Listen Notes is a powerful podcast search engine and database that allows you…

Updated June 2026 26 actions available

Provider
listennotes
Category
Other
Setup
User-supplied API key
Actions
26 available

Quick start

Call Listen Notes from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Listen Notes's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "LISTENNOTES_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

End-users supply their own Listen Notes API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.

Available actions

26 actions exposed via the Listen Notes integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 26 actions
  • LISTENNOTES_FETCH_PODCASTS_BY_A_PUBLISHER_S_DOMAIN_NAME
  • LISTENNOTES_FETCH_RECOMMENDATIONS_FOR_AN_EPISODE
  • LISTENNOTES_FETCH_RECOMMENDATIONS_FOR_A_PODCAST
  • LISTENNOTES_FETCH_RELATED_SEARCH_TERMS
  • LISTENNOTES_FETCH_SUPPORTED_REGIONS
  • LISTENNOTES_FETCH_TRENDING_SEARCH_TERMS
  • LISTENNOTES_FIND_EPISODES_BY_TITLE
  • LISTENNOTES_FULL_TEXT_SEARCH
  • LISTENNOTES_GET_PLAYLIST_BY_ID
  • LISTENNOTES_REFRESH_RSS_FEED_OF_A_PODCAST
  • LISTENNOTES_REQUEST_TO_DELETE_A_PODCAST
  • LISTENNOTES_SPELL_CHECK_ON_A_SEARCH_TERM
  • LISTENNOTES_SUBMIT_A_PODCAST_TO_LISTEN_NOTES_DATABASE
  • LISTENNOTES_TYPEAHEAD_SEARCH

Build with Listen Notes

Open OverSkill, describe what you want to build, and reference Listen Notes in your prompt — the AI will wire up the integration automatically.