Everything you need to integrate Tkalam Localize into your application in 10 minutes
Pick the approach that works best for your learning style
Try APIs in the playground first, no coding required
Jump straight to API integration with code examples
Comprehensive guide covering all features and best practices
Sign up for a free Tkalam Localize account to get started. No credit card required.
After signing in, navigate to your dashboard and create your first API key.
Go to API Keys page
Find it in the left sidebar of your dashboard
Click "Create New Key"
Give it a descriptive name like "Production App" or "Testing"
Copy and save your key
Store it securely - you won't be able to see it again
Now let's translate your first text. Choose your preferred language below:
const response = await fetch('https://api.tkalam.com/v1/translate', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
text: "Hello, how are you?",
target_dialect: "darija",
style: "informal"
})
});
const data = await response.json();
console.log(data.output_text); // السلام، كيداير؟import requests
response = requests.post(
'https://api.tkalam.com/v1/translate',
headers={
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
json={
'text': 'Hello, how are you?',
'target_dialect': 'darija',
'style': 'informal'
}
)
data = response.json()
print(data['output_text']) # السلام، كيداير؟curl -X POST https://api.tkalam.com/v1/translate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"text": "Hello, how are you?",
"target_dialect": "darija",
"style": "informal"
}'{
"detected_source_lang": "en",
"target_dialect": "darija",
"task": "translate",
"style": "informal",
"output_text": "السلام، كيداير؟",
"latin_transliteration": "salam, kidayer?"
}Before integrating into your app, experiment with different dialects and styles in our interactive playground.
Test all three dialects with 6 style variations
Listen to natural voices in different dialects
Upload audio and see transcription results
Track your API usage, monitor performance, and scale as you grow.
View real-time usage metrics, track API calls, and monitor quota consumption.
Our infrastructure is built for scale with 99.9% uptime and global CDN delivery.
Review our best practices guide and consider upgrading to a paid plan for higher quotas and priority support.
You now have everything you need to build amazing Maghreb-native applications