Welcome to Sentimind Labs sentiment analysis service for financial insights.
GET /v1/health — Health checkPOST /v1/analyze/sentiment/single — Analyze sentiment of a single stock-related statementPOST /v1/analyze/sentiment/batch — Analyze sentiment of multiple statements and return overall scoreSingle analysis:
POST /v1/analyze/sentiment/single
{
"text": "Apple stock is set to rally after strong iPhone sales."
}
Batch analysis:
POST /v1/analyze/sentiment/batch
{
"texts": [
"Tesla shares might drop due to weaker demand in China.",
"Microsoft reported record cloud revenue growth."
]
}