GET /fish/model/{id}). This endpoint is fully compatible with the Fish Audio official OpenAPI and is used to query the complete details of a single cloned voice by voice ID.
For creating voices, please refer to the Fish Model Create API. For paginated list queries, please refer to the Fish Model Query API.
Application Process
To use Fish Model API, first open the Ace Data Cloud Console and copy your API Token.
If you are not logged in, you will be redirected to sign in and brought back to this page automatically.
A single API Token works across every service on the platform — no need to subscribe per service. New accounts receive free starter credit; when it runs low you can top up your shared balance in the console.
📘 Full documentation: Fish Model API →
Differences from the Official API
- Authentication method: Uses
Authorization: Bearer {token}, where{token}is the key applied for on this platform. - Response structure: Directly passes through the ModelEntity object from the Fish upstream without platform envelope wrapping; errors use the platform standard structure
{success:false, error:{code,message}, trace_id}. - Path parameter:
{id}is the voice’s_id, which can be obtained from the response when creating via the Fish Model Create API or from paginated queries via the Fish Model Query API.
Request Example
{id} in the URL path with the specific voice ID. No query parameters or request body are needed.
Response Example
A successful response directly passes through the ModelEntity object from the Fish platform:_id can be used as the value of the reference_id field in the subsequent Fish TTS API to perform speech synthesis using this cloned voice.
Billing Information
This endpoint is free of charge — querying voice details by ID is a free operation. OnlyPOST /fish/model with the voices field in the request body for creating new voices is billable.
Error Handling
400 token_mismatched: Missing or invalid request parameters.400 api_not_implemented: Request method or parameters are currently not supported.401 invalid_token: Missing or invalid authentication information.404 not_found: The specified_idvoice does not exist or is not visible to the current account.429 too_many_requests: Rate limit exceeded for the current account.500 api_error: Internal server error.

