텍스트 음성 변환

보이스 클론

립싱크

기타

모델 삭제

보이스 모델 삭제 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,   // undefined
  "message": string    // undefined
}

// 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