🔌 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-12 – 2026-08-13.
CSV downloads
Opens straight in Excel, Bengali company names included.
/api/export.php?type=fundamentals
Every company: latest earnings, all ratios, health score
⬇ 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.