🔌 Free Data & API

Every number this site computes is available as JSON or CSV, free, no key, no account. Nobody else covering the Dhaka Stock Exchange publishes one, so building anything here has meant scraping DSE yourself. You should not have to.

183,883
daily price rows
409
companies
1,882
company-years of earnings
1,607
quarterly results
480
days of market history
JSON API

Read-only. 120 requests per hour per IP. CORS is open, so it works straight from a browser. Price data covers 2024-08-122026-08-13.

/api/v1.php?endpoint=market Index levels and market breadth for the latest session try it ↗
/api/v1.php?endpoint=companies Every listed company with sector, category and market cap try it ↗
/api/v1.php?endpoint=quote&symbol=GP Latest price for one share try it ↗
/api/v1.php?endpoint=history&symbol=GP&limit=100 Daily price history, up to 1000 rows try it ↗
/api/v1.php?endpoint=financials&symbol=GP Yearly and quarterly earnings, book value and dividends try it ↗
/api/v1.php?endpoint=health&symbol=GP Z-category warning score, with every signal that is firing try it ↗
/api/v1.php?endpoint=health&limit=20 The whole market ranked by warning score try it ↗
/api/v1.php?endpoint=sectors Sector list with company counts and market cap try it ↗
CSV downloads

Opens straight in Excel, Bengali company names included.

/api/export.php?type=fundamentals Every company: latest earnings, all ratios, health score ⬇ download
/api/export.php?type=health The full Z-category warning table with reasons ⬇ download
/api/export.php?type=market Daily breadth and turnover history ⬇ download
/api/export.php?type=prices&symbol=GP Full daily price history for one share ⬇ download
Example
# Every share under P/E 10 that is profitable and has no warning signs
curl "https://stockchartbd.com/api/v1.php?endpoint=health&limit=400" \
  | jq '.health[] | select(.score == 0) | .symbol'

# One company's full earnings record
curl "https://stockchartbd.com/api/v1.php?endpoint=financials&symbol=GP"

# The whole fundamentals table into pandas
pd.read_csv("https://stockchartbd.com/api/export.php?type=fundamentals")
Terms, plainly
  • • Free for any use, including commercial. No key, no sign-up.
  • • Please credit the source as DSE Intelligence, and dsebd.org beneath it.
  • • 120 requests per hour per IP. Ask if you need more, the limit exists to protect one small server, not to sell you anything.
  • • This is public market data republished with its source named. Company filings remain the property of their publishers.
  • • Provided as-is, for analysis and education. Not investment advice, and no warranty of accuracy, verify anything you trade on against DSE itself.