MCPα

Investment Research for the AI Age

IEX Cloud API

Reliable financial data API with comprehensive market coverage

by IEX

Usage Score
#81
Documentation
https://cloud.iexapis.com

Authentication

Method: API Key

Rate Limits

Limits: 100 requests/second

Pricing

Free: 500 calls/month, Premium: 5M+ calls/month

Available Endpoints

/stable/stock/{symbol}/quote
/stable/stock/market/batch
/stable/ref-data/symbols

Tags

Market DataReliableBatch Processing

Integration Example

// Example API call
fetch('https://cloud.iexapis.com/stable/stock/{symbol}/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));