Brackly Capital APIs
Access real-time stock market data with ease รขโฌโ anytime, anywhere.
๐ What is the Brackly Capital API?
This API provides real-time stock prices for PSX-listed companies like EFERT, NESTLE, and others. Perfect for financial apps, websites, Excel tools, and automated systems.
๐ Authentication
All API requests require an API key. You can pass it via the Authorization header or as a key parameter.
// Header method: GET https://capital.brackly.com/api/price?symbol=EFERT Authorization: Bearer YOUR_API_KEY // URL method: GET https://capital.brackly.com/api/price?symbol=EFERT&key=YOUR_API_KEY
๐ง Where You Can Use It
- Websites: Embed live stock prices on your finance blog, news portal, or dashboard.
- Mobile Apps: Use in Android/iOS apps for real-time updates.
- Google Sheets: Fetch stock prices using
IMPORTDATA()or Apps Script. - Excel: Use
WEBSERVICE()or VBA for real-time tracking.
๐ฆ Example API Call
GET https://capital.brackly.com/api/price?symbol=EFERT&key=YOUR_API_KEY
๐ก Sample Response
{
"status": "success",
"symbol": "EFERT",
"price": "238.14",
"name": "Engro Fertilizers Limited",
"sector": "FERTILIZER",
"ETF": "No",
"Debt": "No",
"GEM": "Yes",
"timestamp": "2026-02-04 21:28:31"
}
๐ป Code Examples
// JavaScript (fetch)
fetch("https://capital.brackly.com/api/price?symbol=EFERT&key=YOUR_API_KEY")
.then(res => res.json())
.then(data => console.log(data));
// Python (requests)
import requests
r = requests.get("https://capital.brackly.com/api/price?symbol=EFERT&key=YOUR_API_KEY")
print(r.json())
Get Your API Key Login