テキスト読み上げ

音声クローン

リップシンク

その他

モデル削除

音声モデル削除 API をテストします。

モデル削除 API

エンドポイント

POST /api/open/delete-model

リクエストヘッダー

Content-Type: application/json
Authorization: Bearer YOUR_API_TOKEN  // API キー

リクエストパラメータ

{
  "modelId": string  // undefined,モデル ID
}

レスポンス

// undefined - 200
{
  "modelId": string,   // 削除されたモデル ID
  "message": string    // 成功メッセージ
}

// undefined
{
  "error": string     // undefined
}

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"
  }'

オンラインデバッグ

ステータスコード

200: Success
400: Bad Request
401: Unauthorized
403: Forbidden
404: Not Found
429: Too Many Requests
500: Internal Server Error