MCPα
Investment Research for the AI Age
Alpha Vantage API
Free and premium stock market data, forex, and cryptocurrency APIs
by Alpha Vantage Inc.
Usage Score
#88
Documentation
https://www.alphavantage.co/query
Authentication
Method: API Key
Rate Limits
Limits: 5-1200 calls/min
Pricing
Free: 5 calls/min, Premium: 75-1200 calls/min
Available Endpoints
TIME_SERIES_DAILYGLOBAL_QUOTECURRENCY_EXCHANGE_RATECRYPTO_INTRADAYTags
Market DataReal-timeHistoricalFree Tier
Integration Example
// Example API call
fetch('https://www.alphavantage.co/queryTIME_SERIES_DAILY', {
method: 'GET',
headers: {
'Authorization': 'YOUR_API_KEY',
'Content-Type': 'application/json'
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));