Base URL
https://api.lakl.net/v1/
Endpoints
| Endpoint | Description |
|---|---|
| GET /company/<symbol>/ | Company information |
| GET /history/<symbol>/ | Historical stock prices |
| GET /income/<symbol>/ | Income statement |
| GET /balance/<symbol>/ | Balance sheet |
| GET /cashflow/<symbol>/ | Cash flow statement |
Examples
Company
curl https://api.lakl.net/v1/company/BMP/
Price History
curl https://api.lakl.net/v1/history/BMP/
Income Statement
curl https://api.lakl.net/v1/income/BMP/
Python
import requests
BASE_URL = "https://api.lakl.net/v1"
response = requests.get(
f"{BASE_URL}/company/BMP/"
)
data = response.json()
print(data)
Supported Symbols
Use the Vietnamese stock ticker as the
symbol.
BMP
FPT
HPG
VCB
VNM