Fast, real-time transliteration with 660+ word dictionary
Developed by Hamza Afzal
Connect with me on LinkedIn
Cloudflare Pages Open Source on GitHub
Found any issues? Incorrect transliteration? Missing words? Report them here Or send me dm on LinkedIn
Rate Limit: 60 requests / minute
// Example Request
fetch('/api', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ text: 'kya haal hai?' })
})
// Example Response
{
"success": true,
"output": "کیا حال ہے؟",
"wordCount": 3,
"dictionaryHits": 3
}