fish-audio
Generate AI audio and synthesize voices with Fish Audio via AceDataCloud API. Use when creating text-to-speech audio, synthesizing voices, or generating audio content. Supports multiple voice models and TTS capabilities.
npx skills add majiayu000/claude-skill-registry --skill fish-audio-acedatacloud-skills-2 --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Fish Audio — Voice & Audio Synthesis Generate AI audio and synthesize voices through AceDataCloud's Fish Audio API. ## Authentication ```bash export ACEDATACLOUD_API_TOKEN="your-token-here" ``` ## Quick Start ```bash curl -X POST https://api.acedata.cloud/fish/audios \ -H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{"text": "Hello, this is a demonstration of AI voice synthesis."}' ``` ## Endpoints | Endpoint | Purpose | |----------|---------| | `POST /fish/audios` | Generate audio from text or parameters | | `POST /fish/voices` | Voice synthesis and cloning | | `POST /fish/tasks` | Poll task status | ## Workflows ### 1. Text-to-Speech ```json POST /fish/audios { "text": "The quick brown fox jumps over the lazy dog.", "voice_id": "default" } ``` ### 2. Voice Synthesis with Custom Voice ```json POST /fish/voices { "text": "Welcome to our platform.", "audio_url": "https://example.com/reference-voice.mp3" } ``` ## Parameters | Parameter | Type | Description | |-----------|------|-------------| | `text` | string | Text to synthesize into speech | | `voice_id` | string | Voice model to use | | `audio_url` | string | Reference audio for vo
- Authentication
- Quick Start
- Endpoints
- Workflows
- 1. Text-to-Speech
- 2. Voice Synthesis with Custom Voice
- Parameters
- Task Polling
- Response
- Gotchas
export ACEDATACLOUD_API_TOKEN="your-token-here" curl -X POST https://api.acedata.cloud/fish/audios \
What does the fish-audio skill do?
Generate AI audio and synthesize voices with Fish Audio via AceDataCloud API. Use when creating text-to-speech audio, synthesizing voices, or generating audio content. Supports multiple voice models and TTS capabilities.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill fish-audio-acedatacloud-skills-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
