Live

Live Translation

Try our deployed models in real time. Translate between African languages and English instantly.

Mandinka ↔ English

Bidirectional translation powered by NLLB-200-distilled-600M, fine-tuned on 5,797 parallel sentence pairs.

Online615M
Mandinka
0/500
English

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

Get APIs for Live Integration

Integrate our translation models directly into your applications

REST API Endpoint

POST/translate
curl -X POST "https://sheikhtijan-mandinka-english-translation.hf.space/translate" \
  -H "Content-Type: application/json" \
  -d '{"text": "Hello, how are you?", "direction": "en2man"}'

Response Format

{
  "translation": "I be di?",
  "source_language": "English",
  "target_language": "Mandinka",
  "direction": "en2man"
}

Python Integration

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"])

JavaScript / Fetch

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();

Parameters

ParameterTypeDescription
textstringThe text to translate (max 500 chars)
directionstringman2en or en2man

Request Parallel Corpora

Need parallel sentence datasets for your research or model training? Request access to our curated bilingual corpora across multiple African languages and domains.

JSON / JSONL HuggingFace FormatAligned Text

Want to help improve these models?

Contribute translations to help train the next generation of African language models.