기타 API번역 API이 페이지에서번역 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;}