Real-time prices, research reports, financials, funding rounds, and news for 100+ private companies.
RESTful. JSON. Fast. Free tier available.
Prices, research, financials, news, and more. All in one API.
/api/v1/marketsReturns all available private companies with current prices, market caps, and trading status.
/api/v1/markets/{slug}/quoteLive bid/ask prices, spread, 24h change, and volume for any company. Updated in real-time.
/api/v1/markets/{slug}/chartOHLCV candlestick data with configurable periods: 1D, 1W, 1M, 3M, YTD, 1Y, 3Y, 5Y, All.
/api/v1/markets/{slug}/researchInstitutional-grade research with valuation models, revenue estimates, competitive analysis, and risk assessments.
/api/v1/markets/{slug}/financialsRevenue, EBIT, net income, gross margin, and key financial metrics. Includes analyst estimates.
/api/v1/markets/{slug}/funding-roundsComplete fundraising history: round type, amount raised, lead investors, valuation, and date.
/api/v1/markets/{slug}/newsAggregated news feed from verified sources. Filterable by limit and deduplicated by source.
/api/v1/dealsCurrently tradeable companies with bid/ask prices, spreads, availability status, and sector data.
Standard REST API with JSON responses. Works with any language, any framework, any platform.
// Get real-time SpaceX quote
const res = await fetch(
'https://bettermarkets.app/api/v1/markets/spacex/quote',
{ headers: { 'Authorization': `Bearer ${API_KEY}` } }
)
const quote = await res.json()
// Response:
// {
// "data": {
// "symbol": "SPACEX",
// "bid": 259.40,
// "ask": 265.80,
// "mid": 262.60,
// "change": 3.20,
// "changePercent": 1.24,
// "marketCap": "$350.0B"
// }
// }Start free, scale when you're ready.
Power your fintech, research platform, or fund with the most comprehensive pre-IPO dataset available.
Get API Access →api@bettermarkets.app