Try our deployed models in real time. Translate between African languages and English instantly.
Bidirectional translation powered by NLLB-200-distilled-600M, fine-tuned on 5,797 parallel sentence pairs.
Translation will appear here...
Powered by Mandinka ↔ English · Results may need human review
Quick translate
Press Enter to translate instantly
Swap languages
Click the arrow to reverse direction
Copy output
Click the copy icon on the result panel
Integrate our translation models directly into your applications
/translatecurl -X POST "https://sheikhtijan-mandinka-english-translation.hf.space/translate" \
-H "Content-Type: application/json" \
-d '{"text": "Hello, how are you?", "direction": "en2man"}'{
"translation": "I be di?",
"source_language": "English",
"target_language": "Mandinka",
"direction": "en2man"
}import requests
response = requests.post(
"https://sheikhtijan-mandinka-english-translation.hf.space/translate",
json={"text": "Hello, how are you?", "direction": "en2man"}
)
print(response.json()["translation"])const res = await fetch("https://sheikhtijan-mandinka-english-translation.hf.space/translate", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ text: "Hello", direction: "en2man" })
});
const { translation } = await res.json();| Parameter | Type | Description |
|---|---|---|
| text | string | The text to translate (max 500 chars) |
| direction | string | man2en or en2man |
Need parallel sentence datasets for your research or model training? Request access to our curated bilingual corpora across multiple African languages and domains.
Contribute translations to help train the next generation of African language models.