This document introduces the integration guide for the Fish Model Get API (Documentation Index
Fetch the complete documentation index at: https://docs.xhuoapi.ai/llms.txt
Use this file to discover all available pages before exploring further.
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 the API, you need to apply for the corresponding service on the Fish Model API page. After entering the page, click the “Acquire” button. If you are not logged in or registered, you will be automatically redirected to the login page to register and log in. After logging in or registering, you will be automatically returned to the current page. A free quota is granted upon the first application, allowing free use of this 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.

