텍스트 음성 변환 (HTTP)

음성 클론 - 모델 생성

립싱크 - 작업 생성

사용자 프로필

음성 클론 - 모델 삭제

ID로 음성 모델을 삭제합니다.

모델 삭제 API

엔드포인트

POST /api/open/delete-model

요청 헤더

Content-Type: application/json
Authorization: Bearer YOUR_API_KEY  // API 키

요청 파라미터

{
  "modelId": string  // 필수,모델 ID
}

응답 데이터

// 응답 데이터 - 200
{
  "modelId": string,   // undefined
  "message": string    // undefined
}

// 조회 실패
{
  "error": string     // 조회 실패
}

CURL 예시

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

온라인 디버그

상태 코드

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