DataBeast Stock Quotes

View S&P 500 Constituents API Documentation Endpoint Tester

DataBeast API Endpoint: https://databeast-shawn61.replit.app/api/quotes

Code snippet to call this API endpoint:

const axios = require('axios'); async function fetchQuotes(symbols) { const url = 'https://databeast-shawn61.replit.app/api/quotes'; try { const response = await axios.post(url, { symbols: symbols }); return response.data; } catch (error) { console.error('Error fetching quotes:', error); return null; } } const symbols = ['AAPL', 'MSFT', 'GOOGL']; fetchQuotes(symbols).then(data => console.log(data));
Logo Symbol Name Price Change Change % Day High Day Low Year High Year Low Market Cap Volume Avg Volume Open Previous Close EPS PE 50 Day Avg 200 Day Avg Exchange Earnings Announcement Shares Outstanding Timestamp