Quickstart
1) Get an API key
Sign up at langbly.com/signup, verify your email, and create an API key from your dashboard.
2) Make a request
curl -sS 'https://api.langbly.com/language/translate/v2' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY' \
-d '{
"q": "Hello world",
"target": "nl"
}'
Example response:
{
"data": {
"translations": [
{
"translatedText": "Hallo wereld",
"detectedSourceLanguage": "en"
}
]
}
}
Next: Authentication and Translate v2.