--- title: StockPro Sentiment emoji: 📊 colorFrom: green colorTo: blue sdk: docker pinned: false app_port: 7860 --- # StockPro Sentiment API Free open-source news sentiment analysis for Indonesian stock headlines. Uses `lxyuan/distilbert-base-multilingual-cased-sentiments-student` — a lightweight multilingual DistilBERT model that classifies text as **positive**, **negative**, or **neutral**. ## API ### `POST /predict` ```json // Request { "texts": ["BBCA cetak laba bersih Rp50 triliun", "GOTO rugi Rp10 triliun"] } // Response { "results": [ { "text": "BBCA cetak laba bersih Rp50 triliun", "sentiment": "positive", "score": 0.87 }, { "text": "GOTO rugi Rp10 triliun", "sentiment": "negative", "score": 0.83 } ] } ``` ### `GET /health` Returns model load status.