Overview
Styvio provides real-time and historical stock price data combined with sentiment analysis based on social media and news signals. It is designed for developers who want to build trading tools, stock screeners, or market sentiment dashboards. An API key is required, and a free tier is available to explore its capabilities.
Beginner Tip
The sentiment score indicates whether the overall market mood for a stock is bullish or bearish based on recent news and social mentions. Combine it with price data to build more context-aware financial applications.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Styvio",
"description": "Realtime and historical stock data and current stock sentiment",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
symbol The stock ticker symbol that was queried. price Current or most recent stock price. change Price change from the previous trading day close. changePercent Percentage change in price compared to the previous close. sentiment Sentiment score from -1 (bearish) to +1 (bullish) based on news and social signals. Implementation Example
const url = "https://www.Styvio.com/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Similar APIs
View All →Aletheia
Aletheia provides financial data including insider trading filings, earnings call transcripts, and financial statements for US-listed companies.
Alpaca
Alpaca provides real-time and historical market data for US equities and ETFs, along with commission-free trading capabilities.
Alpha Vantage
⭐ Beginner's PickAlpha Vantage delivers free real-time and historical stock, forex, and cryptocurrency data through a simple REST API.
Bank Data API
Bank Data API lets you instantly validate IBAN and SWIFT/BIC numbers to make sure bank account details are correct before processing a payment.
Billplz
Billplz is a payment platform API focused on the Malaysian market that lets you create bills and collect payments online.