Dividend Intelligence for Developers
The first and only API specialized in dividend stock analysis. Get real-time quotes, company fundamentals, dividend history, and proprietary quality scores in one powerful API.
Built by developers, for developers. Get the data you need with the speed you demand.
Unique VERDIX scoring algorithm analyzes dividend sustainability, quality, and growth. Data you can't get anywhere else.
Intelligent caching delivers <50ms response times. 20x faster than fetching from external sources.
100 requests per day completely free. Perfect for testing, hobby projects, and small applications.
Real-time quotes, fundamentals, dividend history, and quality scores - all in one API call.
Bearer token authentication. Clear rate limits. No complicated OAuth flows or API key rotation.
Clear examples in JavaScript, Python, and cURL. Comprehensive guides and responsive support.
5 powerful endpoints to access all the dividend stock data you need
Get real-time stock quotes including current price, volume, market cap, and daily change.
Access company fundamentals: P/E ratio, dividend yield, beta, sector, industry, and detailed company information.
Historical dividend payments with ex-dates, payment dates, amounts, and frequency analysis.
⭐ Proprietary VERDIX dividend quality scores. Includes sustainability, quality, growth ratings, and investment recommendations. This is our unique value proposition!
Complete stock analysis combining quotes, fundamentals, dividends, and VERDIX scores in one comprehensive response.
Get up and running in minutes with these simple examples
// Get VERDIX dividend score for Johnson & Johnson
const response = await fetch('https://api.verdix.com/v1/stock/JNJ/score', {
headers: {
'Authorization': 'Bearer vdx_your_api_key_here'
}
});
const data = await response.json();
console.log(data);
// {
// "symbol": "JNJ",
// "verdixScore": {
// "overall": 88.5,
// "sustainability": 92.0,
// "quality": 90.0,
// "growth": 82.0
// },
// "rating": "Excellent",
// "recommendation": "Strong Buy - High quality dividend stock"
// }
import requests
# Get VERDIX dividend score for Johnson & Johnson
headers = {
'Authorization': 'Bearer vdx_your_api_key_here'
}
response = requests.get(
'https://api.verdix.com/v1/stock/JNJ/score',
headers=headers
)
data = response.json()
print(f"Overall Score: {data['verdixScore']['overall']}")
print(f"Rating: {data['rating']}")
print(f"Recommendation: {data['recommendation']}")
# Get VERDIX dividend score for Johnson & Johnson
curl -H "Authorization: Bearer vdx_your_api_key_here" \
https://api.verdix.com/v1/stock/JNJ/score
# Response:
# {
# "symbol": "JNJ",
# "verdixScore": {
# "overall": 88.5,
# "sustainability": 92.0,
# "quality": 90.0,
# "growth": 82.0
# },
# "rating": "Excellent",
# "recommendation": "Strong Buy - High quality dividend stock"
# }
Start free, scale as you grow. No hidden fees, no surprises.
Join developers who are building the future of dividend investing
No credit card required • 100 requests/day free forever • Upgrade anytime