podchaser

Fetch podcast data from Podchaser's GraphQL API using access tokens.

76|18|Updated Dec 12, 2025
One-click install
npx skills add https://github.com/vm0-ai/vm0-skills --skill podchaser
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: podchaser
Source: https://github.com/vm0-ai/vm0-skills/tree/main/podchaser
Command: npx skills add https://github.com/vm0-ai/vm0-skills --skill podchaser

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Podchaser GraphQL API access enables discovery, metadata, transcripts, charts, and sponsorship data for podcasts.

Core Features & Use Cases

  • Search podcasts, episodes, and creators
  • Retrieve detailed podcast metadata and transcripts
  • Access Apple/Spotify chart data and sponsorship info

Quick Start

Get access token: bash -c 'curl -s -X POST "https://api.podchaser.com/graphql" -H "Content-Type: application/json" -d "{"query": "mutation { requestAccessToken(input: { grant_type: CLIENT_CREDENTIALS, client_id: \"$PODCHASER_CLIENT_ID\", client_secret: \"$PODCHASER_CLIENT_SECRET\" }) { access_token } }"}" | jq -r .data.requestAccessToken.access_token'

Frequently Asked Questions about podchaser

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fetch podcast data from Podchaser using GraphQL?

Podchaser's GraphQL API enables you to fetch podcast metadata, episodes, creators, and transcripts. Obtain a long-lived access token using your Client ID and Client Secret via a mutation request, then use that token in Authorization headers for subsequent GraphQL POST requests to retrieve the data you need.

What podcast information can I retrieve from Podchaser's GraphQL API?

You can retrieve podcasts, episodes, creators, categories, Apple and Spotify chart rankings, sponsorship data, and episode transcripts. The API supports search across shows, creators, networks, and categories to consolidate comprehensive podcast metadata.

What credentials do I need to access Podchaser's GraphQL API?

You need a Podchaser Client ID and Client Secret to request an access token. These credentials are required for the initial GraphQL mutation that generates your long-lived token for subsequent API requests.

Can I extract episode transcripts through Podchaser's GraphQL API?

Yes, transcript extraction is supported through GraphQL queries. After authenticating with your access token, you can retrieve full episode transcripts alongside other podcast metadata and episode details.

How do I access podcast chart rankings and sponsorship data via GraphQL?

Podchaser's GraphQL API provides access to Apple and Spotify chart data and sponsorship information. Include these fields in your GraphQL POST request with your authorization token to retrieve current chart rankings and sponsor details.