Build with
Morrowell
Programmatic access to market data, portfolio management, and AI-powered insights. Build custom tools, dashboards, and integrations with our developer-friendly API.
Powerful Endpoints
Market Data API
Access real-time and historical price data across equities, crypto, and commodities via simple REST endpoints.
Portfolio API
Programmatic portfolio management — create, update, and query portfolios and holdings.
AI Insights API
Tap into Morrowell's AI research engine for stock analysis, recommendations, and market sentiment.
Webhooks
Real-time event notifications for price alerts, trade executions, and portfolio changes delivered to your endpoint.
Authentication
Secure OAuth 2.0 and API key support with granular permission scopes for every endpoint.
Rate Limits
Generous rate limits with burst support. Scale from hobby projects to production applications.
Get Started in Minutes
// Fetch portfolio holdings
const response = await fetch(
"https://api.morrowell.com/v1/portfolio/holdings",
{
headers: {
Authorization: "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
},
}
);
const { holdings } = await response.json();
console.log(holdings);