MCPα

Investment Research for the AI Age

Finnhub Stock API

Real-time stock price, company news, and financial data API

by Finnhub

Usage Score
#85
Documentation
https://finnhub.io/api/v1

Authentication

Method: API Key

Rate Limits

Limits: 60-600 calls/min

Pricing

Free: 60 calls/min, Premium: 300-600 calls/min

Available Endpoints

/quote
/company-news
/financials
/recommendation

Tags

Market DataNewsFinancialsReal-time

Integration Example

// Example API call
fetch('https://finnhub.io/api/v1/quote', {
  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));