Overview
ELI is a Natural Language Processing API specifically designed for the Thai language, offering tools like word segmentation, part-of-speech tagging, and named entity recognition. It fills a gap for developers building Thai-language applications that need linguistic analysis. An API key is required and requests are made via standard HTTP POST calls.
Beginner Tip
Thai text requires proper UTF-8 encoding — always set Content-Type to application/json with charset=utf-8 to prevent garbled characters in both your request and the response.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from ELI",
"description": "Natural Language Processing Tools for Thai Language",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
words List of segmented Thai word tokens extracted from the input text pos_tags Part-of-speech tags corresponding to each word in the words array entities Named entities detected in the text, such as person names or locations Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://nlp.insightera.co.th/docs/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Aylien Text Analysis
Aylien Text Analysis provides programmatic access to a collection of information retrieval and natural language apis via REST API.
Cloudmersive Natural Language Processing
Cloudmersive NLP API provides a broad set of text analysis tools including sentiment analysis, entity extraction, language detection, and profanity filtering.
Detect Language
⭐ Beginner's PickDetect Language API accurately identifies the language of any text, supporting over 164 languages and returning ISO language codes.
Google Cloud Natural
Google Cloud Natural Language API provides powerful NLP features including sentiment analysis, entity recognition, content classification, and syntax analysis, all backed by Google's machine learning models.
Hirak OCR
Hirak OCR converts images containing text into machine-readable strings, supporting over 100 languages with high accuracy.