본문으로 건너뛰기

번역 API

POST /api/translate

Claude AI를 사용하여 텍스트를 번역합니다.

지원 언어

ko, en, ja, zh, zh-TW, vi, th, es, fr, de, ru, ar, pt

요청

interface TranslateRequest {
texts: string[];
targetLang: string;
sourceLang?: string;
}

응답

interface TranslateResponse {
translations: string[];
detectedLang?: string;
}