Text zu Sprache
Stimmenklon
Lippensynchronisation
Sonstiges
Text zu Sprache
Stimmenklon
Lippensynchronisation
Sonstiges
Modell löschen
Testen Sie die API zum Löschen von Stimmmodellen.
API Modell löschen
Endpoint
POST /api/open/delete-model
Request-Header
Content-Type: application/json Authorization: Bearer YOUR_API_TOKEN // API-Key
Request-Parameter
{
"modelId": string // undefined,Modell-ID
}Antwort
// undefined - 200
{
"modelId": string, // undefined
"message": string // undefined
}
// undefined
{
"error": string // undefined
}CURL-Beispiel
curl -X POST https://fishaudio.org/api/open/delete-model \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-d '{
"modelId": "your_model_id"
}'Online-Debug
Statuscodes
200: Success 400: Bad Request 401: Unauthorized 403: Forbidden 404: Not Found 429: Too Many Requests 500: Internal Server Error