Fast & Reliable
Low-latency API with 99.9% uptime
10,000+ Words
Comprehensive English-Zomi dictionary
Secure Access
API key authentication with rate limiting
Sign in to get API access
Create an account to generate API keys and integrate the Zomi Dictionary into your applications.
API Documentation
Learn how to use the Zomi Dictionary API
Base URL
https://your-domain.com/api/v1Authentication
Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEYEndpoints
GET
/dictionary/searchSearch for words in the dictionary
Query Parameters:
term- Search term (required)direction- "en-to-zomi" or "zomi-to-en" (default: en-to-zomi)limit- Max results (default: 10)
GET
/dictionary/exportDownload the full dictionary as JSON
GET
/dictionary/statsGet dictionary statistics (total words, POS counts)
Example Request
curl -X GET "https://your-domain.com/api/v1/dictionary/search?term=love&direction=en-to-zomi" \ -H "Authorization: Bearer zomi_abc123..."
Example Response
{
"success": true,
"data": [
{
"id": 1234,
"english": "love",
"partOfSpeech": "n & v",
"zomi": "lungdam, it",
"usageExample": "I love my family."
}
]
}