Every API, one clean contract.
134 APIs · all speak the same { ok, data, meta, error }envelope. Search, filter, and open one to see endpoints, params & live examples.
Popular
Reputation & Reviews
12 APIsE-commerce & Marketplaces
24 APIsReal Estate
7 APIsJobs & Hiring
10 APIsTravel & Lodging
4 APIsSearch & SEO
4 APIsFinance & Data
5 APIsMedia, Film & Knowledge
17 APIsUtilities & AI
19 APIsClassifieds & Second-hand
4 APIsDeveloper Tools
18 APIsTranslate API
livepost/translate/v1/translate1 creditTranslate text into a single target language. Auto-detects the source by default and returns the detected language + confidence. Supports every script.
{
"text": "Hello, how are you?",
"target": "es"
}Try in playground →post/translate/v1/translate_multi1 creditTranslate the SAME text into MANY target languages in a single call — the multi-target differentiator. Pass up to 60 target codes; returns a translation for each, fanned out concurrently (≈15× faster than calling translate per language).
{
"text": "The weather is beautiful today.",
"targets": [
"es",
"fr",
"de",
"ja",
"ar"
]
}Try in playground →post/translate/v1/detect1 creditDetect the language of a piece of text. Returns the detected language code, its name and a confidence score (0-1). Works on any script.
{
"text": "Привет мир"
}Try in playground →post/translate/v1/dictionary1 creditWord-level dictionary lookup: translate a word/short phrase and get its meanings grouped by part of speech, synonyms, back-translations and transliteration (romanization). Best for single words or short phrases.
{
"text": "run",
"target": "es"
}Try in playground →post/translate/v1/languagesfreeList all supported languages (code → English name). Useful to populate a language picker or validate a code before translating.
Try in playground →post/translate/v1/speak1 creditText-to-speech: turn text into spoken audio (MP3). Pronounces the text in the chosen language's voice/accent — works with every script (Chinese, Japanese, Arabic, Cyrillic, Turkish…). Long text is split and joined into a single MP3. Returns the audio base64-encoded inline (audio/mpeg), so no second download is needed. Pair it with 'translate' to get spoken translations.
{
"text": "Hello, how are you today?",
"lang": "en"
}Try in playground →
Social Media
10 APIs