# Sentiment Perform sentiment analysis based on the given content (recommend for short content). Support English, French and Spanish. Endpoint: GET /text/enrichment/sentiment Version: 2025-08-18T18:01:56Z Security: api_key ## Query parameters: - `lang` (string, required) The two letter language code Example: "en" - `text` (string, required) The text content with UTF-8 text representation Example: "We're so happy to see you, and we will be delighted to extend a warm welcome." ## 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.label` (string) The predicted sentiment label Enum: "POSTIVE", "NEGATIVE" - `result.conf` (object) The confidence score of the sentiment analysis - `result.conf.positive` (number) Positive confidence score - `result.conf.negative` (number) Negative confidence score - `result.conf.neutral` (number) Neutral confidence score - `result.conf.mixed` (number) Mixed confidence score