Prerequisites
Create a Fish Audio account
Create a Fish Audio account
Sign up for a free Fish Audio account to get started with our API.
- Go to fish.audio/auth/signup
- Fill in your details to create an account, complete steps to verify your account.
- Log in to your account and navigate to the API section
Get your API key
Get your API key
Once you have an account, you’ll need an API key to authenticate your requests.
- Log in to your Fish Audio Dashboard
- Navigate to the API Keys section
- Click “Create New Key” and give it a descriptive name, set a expiration if desired
- Copy your key and store it securely
Recipe
Setself_only=False on voices.list() to search the public Voice Library instead of only your own models. The response carries total (matches across all pages) and items (this page). Pick a result’s id and pass it straight to tts.convert() as reference_id — no cloning, no model to manage.
page.total is the full match count, so total > len(page.items) tells you there are more pages — bump page_number to walk them. Any public voice id is a ready-to-use reference_id; nothing is saved to your account.
You can hit the same endpoint directly:

