Named Entity Recognition (NER) is an NLP task used to identify important named entities in the text such as people, places, organizations, date, or any other category. (Recommend for short text content)
200 response
Missing required request parameters
The request is forbidden (Please input a valid API key)
{- "status": {
- "success": true,
- "code": 200
}, - "result": {
- "entities": [
- {
- "text": "string",
- "score": 1,
- "type": "string",
- "begin": 0,
- "end": 1
}
]
}
}
Named Entity Recognition (NER) is an NLP task used to identify important named entities in the text such as people, places, organizations, date, or any other category. (Recommend for long text content)
200 response
Invalid request body
The request is forbidden (Please input a valid API key)
{- "text": "Mark Zuckerberg is one of the founders of Facebook, a company from the United States",
- "lang": "en"
}
{- "status": {
- "success": true,
- "code": 200
}, - "result": {
- "entities": [
- {
- "text": "string",
- "score": 1,
- "type": "string",
- "begin": 0,
- "end": 1
}
]
}
}
Personally Identifiable Information (PII) Entity Recognition (ER) is an NLP task used to identify important named entities in the text such as people, places, organizations, date, or any other category.
200 response
{- "text": "Hello Zhang Wei, your social insurance number 888-456-2345 will be sent to you at 4 Bond Street, Toronto ON M5J 3A2. tomorrow by noon. Could you confirm that you were indeed 18 years old."
}
{ }
Part-of-speech (POS) tagging is a popular Natural Language Processing process which categorizes words in a text (corpus) in correspondence with a particular part of speech, depending on the definition of the word and its context. (Recommend for short text content)
200 response
Missing required request parameters
The request is forbidden (Please input a valid API key)
{- "status": {
- "success": true,
- "code": 200
}, - "result": {
- "entities": [
- {
- "id": 1,
- "text": "string",
- "score": 1,
- "tag": "string",
- "begin": 0,
- "end": 1
}
]
}
}
Part-of-speech (POS) tagging is a popular Natural Language Processing process which categorizes words in a text (corpus) in correspondence with a particular part of speech, depending on the definition of the word and its context. (Recommend for long text content)
200 response
Invalid request body
The request is forbidden (Please input a valid API key)
{- "text": "Mark Zuckerberg is one of the founders of Facebook, a company from the United States",
- "lang": "en"
}
{- "status": {
- "success": true,
- "code": 200
}, - "result": {
- "entities": [
- {
- "id": 1,
- "text": "string",
- "score": 1,
- "tag": "string",
- "begin": 0,
- "end": 1
}
]
}
}
Named Entity Recognition using LLM models.
200 response
{- "text": "Mark Zuckerberg is one of the founders of Facebook, a company from the United States"
}
{ }
Detect the language of the given text content. (Recommend for short text content)
200 response
Missing required request parameters
The request is forbidden (Please input a valid API key)
{- "status": {
- "success": true,
- "code": 200
}, - "result": {
- "label": "string",
- "conf": 1
}
}
Detect the language of the given text content. (Recommend for long text content)
200 response
400 response
The request is forbidden (Please input a valid API key)
{- "text": "Mark Zuckerberg is one of the founders of Facebook, a company from the United States"
}
{- "status": {
- "success": true,
- "code": 200
}, - "result": {
- "label": "string",
- "conf": 1
}
}