🌍 Mandenka Translate

Bambara ↔ French ↔ English

A neural machine translation model maintained by Native Speakers. Enter text below, press Enter or click Translate.

Français0/500
Bamanankan
Translation will appear here

Try an example

Use the API in your app

Integrate Bambara translation directly into your product. Free tier: 10 000 characters / day. No credit card required.

Get API Key →

curl

curl -X POST https://api.mandenka.app/translate \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_KEY" \
  -d '{"text":"Bonjour","source":"fr","target":"bam"}'

python

import requests

res = requests.post(
    "https://api.mandenka.app/translate",
    headers={"X-API-Key": "YOUR_KEY"},
    json={"text": "Bonjour", "source": "fr", "target": "bam"}
)
print(res.json()["translation"])  # → "I ni ce"