Text zu Sprache (HTTP)
Stimmklon - Modell erstellen
Lip-sync - Aufgabe erstellen
Benutzerprofil
Text zu Sprache (HTTP)
Stimmklon - Modell erstellen
Lip-sync - Aufgabe erstellen
Benutzerprofil
Stimmklon - Modell löschen
Ein Stimmenmodell per ID entfernen.
API Modell löschen
Endpoint
POST /api/open/delete-model
Request-Header
Content-Type: application/json Authorization: Bearer YOUR_API_KEY // API-Key
Request-Parameter
{
"modelId": string // Erforderlich,Modell-ID
}Antwort
// Antwortdaten - 200
{
"modelId": string, // undefined
"message": string // undefined
}
// Abfrage fehlgeschlagen
{
"error": string // Abfrage fehlgeschlagen
}CURL-Beispiel
curl -X POST https://fishaudio.org/api/open/delete-model \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-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