TopRank Skills

Home / Claw Skills / 搜索 / Podcastindex
Official OpenClaw rules 36%

Podcastindex

name: podcast index description: Access and search podcast information using the Podcast Index API, including searching for podcasts, episodes, and retrieving details. homepage: https://podcastindex.org/api/docs metadata: {“openclaw”:{“requires”:{“env”: “PODCASTINDEX_API_KEY”,“PODCASTINDEX_API_SECRET” },“primaryEnv”:“PODCASTINDEX_API_KEY”,“emoji”:“🎙️”}} This skill allows you to interact with the Podcast Index API to search for podcasts, retrieve podcast and episode details, and more. Use this wh

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Podcastindex 技能。 若已安装,则直接安装 Podcastindex 技能。

Overview

Skill Key
comicstrip/podcastindex
Author
comicstrip
Source Repo
openclaw/skills
Version
-
Source Path
skills/comicstrip/podcastindex
Latest Commit SHA
3f9e3927d37fa0f8d4159026614804e5886c5551

Extracted Content

SKILL.md excerpt

name: podcast-index description: Access and search podcast information using the Podcast Index API, including searching for podcasts, episodes, and retrieving details. homepage: https://podcastindex.org/api/docs metadata: {“openclaw”:{“requires”:{“env”:[“PODCASTINDEX_API_KEY”,“PODCASTINDEX_API_SECRET”]},“primaryEnv”:“PODCASTINDEX_API_KEY”,“emoji”:“🎙️”}}
This skill allows you to interact with the Podcast Index API to search for podcasts, retrieve podcast and episode details, and more. Use this when the user asks for podcast recommendations, episode information, or searches related to podcasts.
Prerequisites
	•	Ensure PODCASTINDEX_API_KEY and PODCASTINDEX_API_SECRET are set in the environment or config.
	•	All requests must be authenticated with specific headers.
	•	Base URL: https://api.podcastindex.org/api/1.0
Authentication
To authenticate a request:
	1	Get the current Unix timestamp: unixTime = Math.floor(Date.now() / 1000)
	2	Compute the SHA-1 hash: hash = crypto.createHash('sha1').update(PODCASTINDEX_API_KEY + PODCASTINDEX_API_SECRET + unixTime.toString()).digest('hex')
	3	Include these headers in every request:
	◦	User-Agent: OpenClaw/1.0 (or a suitable identifier)
	◦	X-Auth-Key: [PODCASTINDEX_API_KEY]
	◦	X-Auth-Date: [unixTime]
	◦	Authorization: [hash]
Use the built-in HTTP request tool (e.g., fetch or http_get) to send GET requests with these headers. If executing code, use Node.js modules like ‘node-fetch’ and ‘crypto’.
Key Endpoints and Usage
	•	Search Podcasts by Term: Use when searching for podcasts by keywords in title, author, or owner.
	◦	Endpoint: GET /search/byterm?q=[query]&[optional params like max=10, fulltext=true]
	◦	Example: To find podcasts about “AI”, request /search/byterm?q=AI
	•	Search Podcasts by Title: Use for exact title matches.
	◦	Endpoint: GET /search/bytitle?q=[query]
	•	Search Episodes by Person: Use to find episodes featuring a specific person.
	◦	Endpoint: GET /search/byperson?q=[person name]
	•	Get Podcast by Feed ID: Use to ret...

Related Claw Skills