Historical stock market data that doesn't break the bank.

REST API serving stock market data from 2011 to present. Human-readable field names. Priced for indie devs, not hedge funds.

$ curl https://api.delisted.dev/v1/fundamentals/AAPL?period=2024-Q3

10,000+

tickers

13+

years of data

Try it

See it in action

GET
api.delisted.dev/v1/fundamentals/
{
  "ticker": "AAPL",
  "company_name": "Apple Inc.",
  "period": "2024-Q3",
  "revenue": 85777000000,
  "net_income": 21448000000,
  "eps_diluted": 1.40,
  "total_assets": 331612000000,
  "free_cash_flow": 25978000000
}

Features

Built for quantitative developers

Human-readable fields

revenue, net_income, shares_outstanding — not us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax.

Dead companies included

Delisted, bankrupt, acquired tickers all present. Backtests won't lie.

Priced for independents

Free tier to get started. $20/mo for full historical depth. Built for solo quants, not hedge funds.

filed_on timestamp on every record

Know exactly when information became public. Point-in-time accuracy.

Quarterly and annual periods

Every filing period available. Filter by period=2024-Q3 or period=2024-FY.

Simple REST interface

One endpoint, predictable URLs. No SDKs required. Works with curl, Python, JavaScript, anything.

Response

What you get back

{
  "ticker": "AAPL",
  "company_name": "Apple Inc.",
  "cik": "0000320193",
  "period": "2024-Q3",
  "fiscal_year": 2024,
  "fiscal_quarter": 3,
  "filed_on": "2024-08-02",
  "period_end": "2024-06-29",
  "revenue": 85777000000,
  "cost_of_revenue": 46099000000,
  "gross_profit": 39678000000,
  "operating_income": 25352000000,
  "net_income": 21448000000,
  "eps_basic": 1.40,
  "eps_diluted": 1.40,
  "shares_outstanding": 15287521000,
  "total_assets": 331612000000,
  "total_liabilities": 264816000000,
  "total_equity": 66796000000,
  "operating_cash_flow": 28873000000,
  "capital_expenditures": -2895000000,
  "free_cash_flow": 25978000000
}

Start building

Create a free account. No credit card required.