v1

latestOpenAPI 3.1.0MIT2026-08-0453113564.4 KB
Finance Sentiment

Analyze finance sentiment

Professional account required. Free and Hobby accounts cannot use this endpoint.

Analyze a single financial or trading text using the Adanos finance-tuned sentiment engine.

post/sentiment/v1/analyze

Request body

textstring required

Financial or trading text to analyze.

Example request

{
  "text": "TSLA looks like a short squeeze setup, loading calls"
}

Response

Successful Response

textstring required

Normalized input text that was analyzed

sentiment_scorenumber required

-1.0 bearish to +1.0 bullish

sentiment_label'positive' | 'neutral' | 'negative' required

Adanos three-class sentiment label, matching top_mentions payloads

Example response

{
  "text": "TSLA looks like a short squeeze setup, loading calls",
  "sentiment_score": 0.78,
  "sentiment_label": "positive",
  "components": {
    "engine_version": "5.4",
    "vader_compound": 0.34,
    "roberta_score": 0.61,
    "emoji_score": 0,
    "phrase_adjustment": 0.21,
    "phrase_matches": [
      {
        "phrase": "short squeeze",
        "score": 3.5
      }
    ],
    "contextual_finance_matches": []
  }
}