Mora Docs
공식홈페이지Mora 상태
  • 환영합니다
  • 고객센터 안내
  • 🤖Team Bot
    • Mora 봇
      • 문의방법
      • 개발팀
        • 봇개발팀
        • 대시보드개발팀
      • 명령어
        • 기본기능
          • 도움말
          • 건의하기
          • 문의하기
          • 신고하기
          • 서포트서버
        • 대화기능
        • 경제기능
        • 오락기능
        • 검색기능
        • 전적기능
        • 뮤직기능
        • 유틸리티
        • 관리기능
    • Mora Music
    • 도박봇
    • 추첨봇
    • 레벨봇
    • 로그봇
    • 관리봇
    • 보안봇
    • 상점봇
  • 📱API
    • API 소개
    • API Status
    • API 가이드
      • Version 1
        • ⌨️ 타자번역
        • 🔒캡챠
        • 깃허브
        • 맞춤법검사
        • 발음번역
        • 랜덤숫자
        • 글자뒤집기
        • URL단축
      • Version 2
        • 검열기
        • 깃허브
        • 날씨
        • 랜덤일러스트
        • 캡챠
        • QR코드
      • Version 3
        • 가사
        • NSFW
  • 📩새로운 소식
    • 업데이트 소식
      • 2023년 9월 23일
      • 2023년 9월 18일
      • 2023년 9월 5일
Powered by GitBook
On this page
  • 타자번역
  • Templates
  • 영어 타자 → 한글 타자
  • NodeJS
  • Python
  • 한글 발음 → 영어 발음
  • NodeJS
  • Python

Was this helpful?

Edit on GitHub
  1. API
  2. API 가이드
  3. Version 1

⌨️ 타자번역

Mora Api 타자번역 입니다.

타자번역

  • 출처 : https://npmjs.com/package/inko

Templates

  • API는 모두 GET 메서드를 사용합니다

영어 타자 → 한글 타자

GET https://mora-bot.kr/api/v1/en2ko?text={한글 타자로 변환할 문장}

Query Parameters

Name
Type
Description

text*

String

한글 타자로 변환할 문장

// 응답 내용
{
    "license": "inko module used https://www.npmjs.com/package/inko",
    "status": 200,
    "origin": "ahfk",
    "result": "모라",
    "success": true
}
Field
Type
Description

origin

String

호출된 문장

result

String

변환된 문장

NodeJS

// node-fetch
const fetch = require('node-fetch')
fetch(`https://mora-bot.kr/api/v1/en2ko?text=${encodeURI(`택스트`)}`)
    .then(res => res.json())
    .then(json => {
        console.log(json)
        console.log(`입력된 값 : ${json.origin}`);
        console.log(`한글 타자로 : ${json.result}`);
    });

// request
let api_url = `https://mora-bot.kr/api/v1/en2ko?text=${encodeURI(`텍스트`)}`
const request = require('request');
let options = {
    url: api_url
}
request.get(options, function (error, response, body) {
    if (!error && response.status == 200) {
        let json = JSON.parse(body)
        console.log(`입력된 값 : ${json.origin}`);
        console.log(`한글 타자로 : ${json.result}`);
    } else {
        console.log('error = ' + response.errorcode);
    }
});

Python

import requests

response = requests.get("http://mora-bot.kr/api/v1/en2ko?text=[텍스트]")
result = response.json()

if response.status == 200:
  print(result)
else:
  print(f"Error Code: {response.errorcode}")

한글 발음 → 영어 발음

  • GET URL : https://mora-bot.kr/api/v1/ko2en?text={영어 타자로 변환할 문장}

Field
Type
Description

origin

String

호출된 문장

result

String

변환된 문장

// 응답 내용
{
    "license":"inko module used https://www.npmjs.com/package/inko",
    "status":200,
    "origin":"모라",
    "result":"ahfk",
    "success":true
}

NodeJS

// node-fetch
const fetch = require('node-fetch')
fetch(`https://mora-bot.kr/api/v1/ko2en?text=${encodeURI(`텍스트`)}`)
    .then(res => res.json())
    .then(json => {
        console.log(json
        console.log(`입력된 값 : ${json.origin}`);
        console.log(`한글 타자로 : ${json.result}`);
    });

// request
let api_url = `https://mora-bot.kr/api/v1/ko2en?text=${encodeURI(`텍스트`)}`
const request = require('request');
let options = {
    url: api_url
}
request.get(options, function (error, response, body) {
    if (!error && response.status == 200) {
        let json = JSON.parse(body)
        console.log(`입력된 값 : ${json.origin}`);
        console.log(`한글 타자로 : ${json.result}`);
    } else {
        console.log('error = ' + response.errorcode);
    }
});

Python

import requests

response = requests.get("https://mora-bot.kr/api/v1/ko2en?text=[텍스트]")
result = response.json()

if response.status == 200:
  print(result)
else:
  print(f"Error Code: {response.errorcode}")
PreviousVersion 1Next캡챠

Last updated 1 year ago

Was this helpful?

📱