Texte en parole
Clonage de voix
Synchronisation labiale
Autres
Texte en parole
Clonage de voix
Synchronisation labiale
Autres
Supprimer un modèle
Testez l’API de suppression de modèle vocal.
API Supprimer un modèle
Endpoint
POST /api/open/delete-model
En-têtes de requête
Content-Type: application/json Authorization: Bearer YOUR_API_TOKEN // Clé API
Paramètres de requête
{
"modelId": string // undefined,ID du modèle
}Réponse
// undefined - 200
{
"modelId": string, // undefined
"message": string // undefined
}
// undefined
{
"error": string // undefined
}Exemple CURL
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"
}'Debug en ligne
Codes de statut
200: Success 400: Bad Request 401: Unauthorized 403: Forbidden 404: Not Found 429: Too Many Requests 500: Internal Server Error