# NER 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) Endpoint: POST /text/nlp/ner Version: 2025-08-18T18:01:56Z Security: api_key ## Request fields (application/json): - `text` (string, required) The text content with UTF-8 text representation - `lang` (string, required) The two letter language code Enum: "en", "fr", "es" ## Response 200 fields (application/json): - `status` (object) response status - `status.success` (boolean) Response status - `status.code` (integer) Response status code - `result` (object) response body - `result.entities` (array) A list of recognized named entities - `result.entities.text` (string) Text content - `result.entities.score` (number) Confidence score - `result.entities.type` (string) Named Entity - `result.entities.begin` (integer) Starting position - `result.entities.end` (integer) Ending position