Skip to content

Instantly share code, notes, and snippets.

@ishank-dev
Last active March 31, 2020 08:52
Show Gist options
  • Save ishank-dev/747b5e4ed2edcabb57ca39db83b77f8a to your computer and use it in GitHub Desktop.
Save ishank-dev/747b5e4ed2edcabb57ca39db83b77f8a to your computer and use it in GitHub Desktop.

Braille-Translator

API Endpoints

Request
GET  /languages

POST /translate
[
  {
    "text": "I love books",
    "dest": "brl",
  }
]
Response:
[
  {
    “text”: "I love books",
    “src”: "en",
    “dest”: "brl", 
    “translated”: "⠠⠊ ⠇⠕⠧⠑ ⠃⠕⠕⠅⠎"
  }
]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment