← 返回 Skills 市场
mickmicksh

Lap Aggregators Api Service

作者 mickmicksh · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
110
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install lap-aggregators-api-service
功能描述
Aggregators API Service API skill. Use when working with Aggregators API Service for podcast-bot, api, stats. Covers 61 endpoints.
使用说明 (SKILL.md)

Aggregators API Service

API version: 0.78-ddd79bd

Auth

ApiKey x-zeno-api-key in header | Bearer basic

Base URL

https://api.zeno.fm

Setup

  1. Set Authorization header with your Bearer token
  2. GET /podcast-bot/podcasts/list -- verify access
  3. POST /stats/mounts/{mount}/auth-cache/reload -- create first reload

Endpoints

61 endpoints across 4 groups. See references/api-spec.lap for full details.

podcast-bot

Method Path Description
GET /podcast-bot/podcasts/{podcastKey} Get podcast
PUT /podcast-bot/podcasts/{podcastKey} Update podcast info
DELETE /podcast-bot/podcasts/{podcastKey} Delete podcast
GET /podcast-bot/podcasts/{podcastKey}/recordingConfig Get podcast recording configuration
PUT /podcast-bot/podcasts/{podcastKey}/recordingConfig Update podcast recording configuration
DELETE /podcast-bot/podcasts/{podcastKey}/recordingConfig Delete podcast recording configuration
GET /podcast-bot/podcasts/{podcastKey}/processingPresets Get podcast processing presets
PUT /podcast-bot/podcasts/{podcastKey}/processingPresets Update podcast processing presets
GET /podcast-bot/podcasts/{podcastKey}/interviewPresets Get podcast interview extraction presets
PUT /podcast-bot/podcasts/{podcastKey}/interviewPresets Update podcast interview extraction presets
PUT /podcast-bot/podcasts/{podcastKey}/episodes/{episodeKey}/unpublish Unpublish podcast episode
PUT /podcast-bot/podcasts/{podcastKey}/episodes/{episodeKey}/publish Publish podcast episode
GET /podcast-bot/podcasts/{podcastKey}/aiAdsPresets Get podcast AI Ads presets
PUT /podcast-bot/podcasts/{podcastKey}/aiAdsPresets Update podcast AI Ads presets
POST /podcast-bot/workflows/process-file Process file
POST /podcast-bot/podcasts/{podcastKey}/upload/prerollAudio Upload pre-roll audio - prepended to every episode
POST /podcast-bot/podcasts/{podcastKey}/upload/postrollAudio Upload post-roll audio - appended to every episode
POST /podcast-bot/podcasts/{podcastKey}/upload/editOutroAudio Upload outro audio for edit recording
POST /podcast-bot/podcasts/{podcastKey}/upload/editIntroAudio Upload intro audio for edit recording
POST /podcast-bot/podcasts/{podcastKey}/episodes/{episodeKey}/reprocess Reprocess episode
POST /podcast-bot/podcasts/{podcastKey}/episodes/{episodeKey}/reprocess/custom Reprocess episode with custom presets
POST /podcast-bot/podcasts/recording/create Create recording podcast
GET /podcast-bot/workflows/{workflowId}/details Get workflow details
GET /podcast-bot/podcasts/{podcastKey}/episodes Get podcast episodes
GET /podcast-bot/podcasts/{podcastKey}/episodes/{episodeKey} Get podcast episode
DELETE /podcast-bot/podcasts/{podcastKey}/episodes/{episodeKey} Delete podcast episode
GET /podcast-bot/podcasts/{podcastKey}/episodes/{episodeKey}/transcript Get transcript for a podcast episode
GET /podcast-bot/podcasts/{podcastKey}/episodes/{episodeKey}/metadata Get metadata for a podcast episode
GET /podcast-bot/podcasts/{podcastKey}/episodes/{episodeKey}/adsMarkers Get Ads markers info for a podcast episode
GET /podcast-bot/podcasts/{podcastKey}/episodes/interviews Get podcast interviews
GET /podcast-bot/podcasts/list List podcasts
GET /podcast-bot/jobs/podcasts/{podcastKey} Get all processing jobs for a podcast
GET /podcast-bot/jobs/podcasts/{podcastKey}/episodes/{episodeKey} Get processing jobs for a podcast episode

api

Method Path Description
GET /api/v2/podcasts/{podcastKey} Get podcast
PUT /api/v2/podcasts/{podcastKey} Update podcast
DELETE /api/v2/podcasts/{podcastKey} Delete podcast
GET /api/v2/podcasts/{podcastKey}/episodes/{episodeKey} Get podcast episode
PUT /api/v2/podcasts/{podcastKey}/episodes/{episodeKey} Update podcast episode
DELETE /api/v2/podcasts/{podcastKey}/episodes/{episodeKey} Delete podcast episode
POST /api/v2/stations/search Search stations
POST /api/v2/stations/listener/location Get top stations by listener location
POST /api/v2/podcasts/{podcastKey}/episodes/create Create podcast episode
POST /api/v2/podcasts/search Search podcasts
POST /api/v2/podcasts/create Create podcast
GET /api/v2/stations/{stationKey} Get station
GET /api/v2/stations/list List stations
GET /api/v2/stations/languages Get the list of Languages that can be used to filter stations in the search stations request
GET /api/v2/stations/genres Get the list of Genres that can be used to filter stations in the search stations request
GET /api/v2/stations/countries Get the list of Countries that can be used to filter stations in the search stations request
GET /api/v2/stations/browse Browse all stations
GET /api/v2/podcasts/{podcastKey}/episodes Get podcast episodes
GET /api/v2/podcasts/languages Get the list of Languages that can be used to filter podcasts in the search podcasts request
GET /api/v2/podcasts/countries Get the list of Countries that can be used to filter podcasts in the search podcasts request
GET /api/v2/podcasts/categories Get the list of Categories that can be used to filter podcasts in the search podcasts request

stats

Method Path Description
POST /stats/mounts/{mount}/auth-cache/reload Retrieve total numer of live stats for a specific mount
POST /stats/mounts/{mount}/auth-cache/reload/all Retrieve total numer of live stats for a specific mount
GET /stats/mounts/{mount}/live/total Retrieve total numer of live stats for a specific mount

partners

Method Path Description
POST /partners/streams Get the partner information for a list of streams.
GET /partners/{partnerId}/ads/stats Retrieve partner stats
GET /partners/streams/{streamId} Get the stream partner information.
GET /partners/streams/{streamId}/tracks Get the stream partner information.

Common Questions

Match user requests to endpoints in references/api-spec.lap. Key patterns:

  • "Get podcast details?" -> GET /podcast-bot/podcasts/{podcastKey}
  • "Update a podcast?" -> PUT /podcast-bot/podcasts/{podcastKey}
  • "Delete a podcast?" -> DELETE /podcast-bot/podcasts/{podcastKey}
  • "List all recordingConfig?" -> GET /podcast-bot/podcasts/{podcastKey}/recordingConfig
  • "List all processingPresets?" -> GET /podcast-bot/podcasts/{podcastKey}/processingPresets
  • "List all interviewPresets?" -> GET /podcast-bot/podcasts/{podcastKey}/interviewPresets
  • "List all aiAdsPresets?" -> GET /podcast-bot/podcasts/{podcastKey}/aiAdsPresets
  • "Get podcast details?" -> GET /api/v2/podcasts/{podcastKey}
  • "Update a podcast?" -> PUT /api/v2/podcasts/{podcastKey}
  • "Delete a podcast?" -> DELETE /api/v2/podcasts/{podcastKey}
  • "Get episode details?" -> GET /api/v2/podcasts/{podcastKey}/episodes/{episodeKey}
  • "Update a episode?" -> PUT /api/v2/podcasts/{podcastKey}/episodes/{episodeKey}
  • "Delete a episode?" -> DELETE /api/v2/podcasts/{podcastKey}/episodes/{episodeKey}
  • "Create a reload?" -> POST /stats/mounts/{mount}/auth-cache/reload
  • "Create a all?" -> POST /stats/mounts/{mount}/auth-cache/reload/all
  • "Create a process-file?" -> POST /podcast-bot/workflows/process-file
  • "Create a prerollAudio?" -> POST /podcast-bot/podcasts/{podcastKey}/upload/prerollAudio
  • "Create a postrollAudio?" -> POST /podcast-bot/podcasts/{podcastKey}/upload/postrollAudio
  • "Create a editOutroAudio?" -> POST /podcast-bot/podcasts/{podcastKey}/upload/editOutroAudio
  • "Create a editIntroAudio?" -> POST /podcast-bot/podcasts/{podcastKey}/upload/editIntroAudio
  • "Create a reprocess?" -> POST /podcast-bot/podcasts/{podcastKey}/episodes/{episodeKey}/reprocess
  • "Create a custom?" -> POST /podcast-bot/podcasts/{podcastKey}/episodes/{episodeKey}/reprocess/custom
  • "Create a create?" -> POST /podcast-bot/podcasts/recording/create
  • "Create a stream?" -> POST /partners/streams
  • "Create a search?" -> POST /api/v2/stations/search
  • "Create a location?" -> POST /api/v2/stations/listener/location
  • "Create a create?" -> POST /api/v2/podcasts/{podcastKey}/episodes/create
  • "Create a search?" -> POST /api/v2/podcasts/search
  • "Create a create?" -> POST /api/v2/podcasts/create
  • "List all total?" -> GET /stats/mounts/{mount}/live/total
  • "List all details?" -> GET /podcast-bot/workflows/{workflowId}/details
  • "List all episodes?" -> GET /podcast-bot/podcasts/{podcastKey}/episodes
  • "Get episode details?" -> GET /podcast-bot/podcasts/{podcastKey}/episodes/{episodeKey}
  • "Delete a episode?" -> DELETE /podcast-bot/podcasts/{podcastKey}/episodes/{episodeKey}
  • "List all transcript?" -> GET /podcast-bot/podcasts/{podcastKey}/episodes/{episodeKey}/transcript
  • "List all metadata?" -> GET /podcast-bot/podcasts/{podcastKey}/episodes/{episodeKey}/metadata
  • "List all adsMarkers?" -> GET /podcast-bot/podcasts/{podcastKey}/episodes/{episodeKey}/adsMarkers
  • "List all interviews?" -> GET /podcast-bot/podcasts/{podcastKey}/episodes/interviews
  • "List all list?" -> GET /podcast-bot/podcasts/list
  • "Get podcast details?" -> GET /podcast-bot/jobs/podcasts/{podcastKey}
  • "Get episode details?" -> GET /podcast-bot/jobs/podcasts/{podcastKey}/episodes/{episodeKey}
  • "List all stats?" -> GET /partners/{partnerId}/ads/stats
  • "Get stream details?" -> GET /partners/streams/{streamId}
  • "List all tracks?" -> GET /partners/streams/{streamId}/tracks
  • "Get station details?" -> GET /api/v2/stations/{stationKey}
  • "List all list?" -> GET /api/v2/stations/list
  • "List all languages?" -> GET /api/v2/stations/languages
  • "List all genres?" -> GET /api/v2/stations/genres
  • "List all countries?" -> GET /api/v2/stations/countries
  • "List all browse?" -> GET /api/v2/stations/browse
  • "List all episodes?" -> GET /api/v2/podcasts/{podcastKey}/episodes
  • "List all languages?" -> GET /api/v2/podcasts/languages
  • "List all countries?" -> GET /api/v2/podcasts/countries
  • "List all categories?" -> GET /api/v2/podcasts/categories
  • "How to authenticate?" -> See Auth section

Response Tips

  • Check response schemas in references/api-spec.lap for field details
  • List endpoints may support pagination; check for limit, offset, or cursor params
  • Create/update endpoints typically return the created/updated object

CLI

# Update this spec to the latest version
npx @lap-platform/lapsh get aggregators-api-service -o references/api-spec.lap

# Search for related APIs
npx @lap-platform/lapsh search aggregators-api-service

References

  • Full spec: See references/api-spec.lap for complete endpoint details, parameter tables, and response schemas

Generated from the official API spec by LAP

安全使用建议
This skill appears to be a straightforward, instruction-only wrapper for the Zeno/Aggregators podcast API and only asks for a single API key. Before installing: 1) Confirm whether the API expects an x-zeno-api-key header or a Bearer token and how AGGREGATORS_API_SERVICE_API_KEY should be provided to the agent; 2) Store the API key in a secure secret store and give it least privilege possible; 3) Test with a limited-account key first (read-only or minimal scope) to confirm behavior; 4) Note there is no local install, so the agent will make network calls to api.zeno.fm if invoked — ensure you trust that endpoint. If you need the agent to not call the API autonomously, disable model invocation for this skill or avoid granting it the key.
功能分析
Type: OpenClaw Skill Name: lap-aggregators-api-service Version: 1.0.0 The skill is a standard API wrapper for the Zeno.fm Aggregators API Service, providing access to 61 endpoints for podcast management, station searching, and statistics. It follows standard OpenClaw conventions, requires a specific API key environment variable (AGGREGATORS_API_SERVICE_API_KEY), and uses a legitimate base URL (api.zeno.fm). No evidence of malicious intent, data exfiltration, or prompt injection was found in SKILL.md or _meta.json.
能力标签
requires-oauth-tokenrequires-sensitive-credentials
能力评估
Purpose & Capability
Name/description describe an Aggregators API for podcast/stats endpoints and the SKILL.md enumerates 61 relevant endpoints on https://api.zeno.fm. The single required env var (an API key) is appropriate for this API-focused purpose.
Instruction Scope
Instructions are limited to calling API endpoints (set Authorization header, verify access, call reload). They do not instruct reading local files or unrelated system state. Minor ambiguity: SKILL.md mentions both an ApiKey header (x-zeno-api-key) and using a Bearer token; it’s unclear which the agent should use or how AGGREGATORS_API_SERVICE_API_KEY maps to those headers.
Install Mechanism
No install spec and no code files are present (instruction-only). Nothing will be written to disk as part of an install, which is the lowest-risk pattern.
Credentials
Only one environment variable is required (AGGREGATORS_API_SERVICE_API_KEY), which is proportionate. Small mismatch: the env var name implies an API key, but the setup instructs to set an Authorization Bearer token; clarify which credential type and header the agent will actually use.
Persistence & Privilege
always:false (not force-included) and normal model invocation allowed. The skill does not request persistence or system-wide config access.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install lap-aggregators-api-service
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /lap-aggregators-api-service 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of lap-aggregators-api-service skill. - Provides integration with the Aggregators API Service, covering 61 endpoints across podcast-bot, api, stats, and partners. - Supports key podcast operations: create, update, fetch, delete podcasts and episodes. - Includes endpoints for podcast configuration, workflow processing, file uploads, stats, and partner info. - Offers setup guidance and common question patterns for matching user requests to API endpoints. - Requires the AGGREGATORS_API_SERVICE_API_KEY environment variable for authentication.
元数据
Slug lap-aggregators-api-service
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Lap Aggregators Api Service 是什么?

Aggregators API Service API skill. Use when working with Aggregators API Service for podcast-bot, api, stats. Covers 61 endpoints. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 110 次。

如何安装 Lap Aggregators Api Service?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install lap-aggregators-api-service」即可一键安装,无需额外配置。

Lap Aggregators Api Service 是免费的吗?

是的,Lap Aggregators Api Service 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Lap Aggregators Api Service 支持哪些平台?

Lap Aggregators Api Service 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Lap Aggregators Api Service?

由 mickmicksh(@mickmicksh)开发并维护,当前版本 v1.0.0。

💬 留言讨论