Stock Prices

Daloopa serves daily stock prices for the companies it covers, through the same API and the same company ids you already use for fundamentals. One key, one id, both datasets

What is Stock Prices?

Two related datasets:

  • OHLCV bars: open, high, low, close, and volume for each US trading day, one row per company per day. Prices come back as reported by the exchanges, and you can request split- and dividend-adjusted values with a single query parameter.
  • Adjustment factors: the individual corporate action events (splits, cash dividends, spinoffs) behind every adjustment, so you can audit our math or run your own.

The problem this solves: fundamentals without prices only tell half the story. Building a multiples screen, backtest, or valuation model usually means joining Daloopa fundamentals against a separate price vendor, with all the ticker-matching pain that brings. Here the join key is the Daloopa company_id you already have.

Coverage

Prices cover the US-listed companies in Daloopa's coverage, common shares and ADRs alike.

WhatDepth
Daily OHLCV barsBack to January 2019 for established coverage, or from the listing date for newly listed companies
Adjustment factorsBack to January 2019

New companies are mapped automatically

You do not need to ask us to add a company. A pipeline runs every night, checks for companies that are new to Daloopa or new to the market (IPOs, ticker changes, relistings), matches them against the live exchange feed, verifies the match, and starts collecting their prices the same night. A company that IPOs on Monday has prices in the API on Tuesday, with its history backfilled.

When data updates

Prices update once per US trading day, on this schedule (all times UTC):

TimeWhat happens
00:15Exchange data for the completed trading day is published
01:15New companies are detected and mapped
02:00The day's OHLCV bars land
02:45Adjustment factors sync, including any restated historical events

Each trading day's data is available by roughly 03:00 UTC, which is about 11 PM Eastern the same evening, hours before the next US market open.

How to access

Through the REST API, with your existing API key:

  • GET /api/v3/companies/{company_id}/stock-prices returns daily bars, raw by default, adjusted with ?adjusted=true.
  • GET /api/v3/companies/{company_id}/adjustment-factors returns the corporate action events behind the adjustments.

Stock prices are also available through the Daloopa MCP server's get_stock_prices tool. The MCP tool always returns adjusted prices, there is no raw option there.

Related Documentation

  • OHLCV Data: the bars endpoint in detail, with parameters, examples, and the adjustment convention.
  • Adjustment Factors: factor types, how to apply them yourself, and the factors endpoint.

Did this page help you?