hlb.com.my APIhlb.com.my ↗
Access Hong Leong Bank fixed deposit rates, product details, foreign currency FD rates, and active promotions via 6 structured API endpoints.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/a97e094b-fcd6-45b5-ad2a-ab2eb3d30ede/get_fixed_deposit_products' \ -H 'X-API-Key: $PARSE_API_KEY'
List all available fixed deposit products from Hong Leong Bank. Returns product names with URLs to their detail pages.
No input parameters required.
{
"type": "object",
"fields": {
"products": "array of product objects with name, url, and description"
},
"sample": {
"data": {
"products": [
{
"url": "https://www.hlb.com.my/en/personal-banking/fixed-deposit/fixed-deposit-account/fixed-deposit-account.html",
"name": "More Details",
"description": ""
},
{
"url": "https://www.hlb.com.my/en/personal-banking/fixed-deposit/fixed-deposit-account/e-fixed-deposit.html",
"name": "More Details",
"description": ""
}
]
},
"status": "success"
}
}About the hlb.com.my API
This API exposes 6 endpoints covering Hong Leong Bank's fixed deposit product catalog, interest rates, and promotions. Use get_fixed_deposit_interest_rates to retrieve tenure-by-tenure rates from 1 to 60 months, call get_foreign_currency_fd_interest_rates to compare rates across 10 currencies including USD, AUD, and CNY, or pull active FD campaigns via get_fd_promotions. All endpoints return structured JSON with no session handling required.
Fixed Deposit Product Catalog and Rates
get_fixed_deposit_products returns an array of product objects — each with a name, url, and description — covering all fixed deposit offerings listed on hlb.com.my. These URLs feed directly into get_fd_product_details, which accepts a product_url parameter and returns granular page data: interest_rates as an array keyed to table headers, minimum_deposit, product_type (Conventional or Shariah-compliant), and an array of terms_and_conditions objects linking to PDF documents. This endpoint works across both Hong Leong Bank and Hong Leong Islamic Bank product pages.
Standard and e-Fixed Deposit Rate Endpoints
get_fixed_deposit_interest_rates returns the standard Fixed Deposit Account's full rate schedule, including effective_date in DD/MM/YYYY format, min_deposit, and an interest_rates array where each object carries a tenure and interest_rate_pa value. get_efixed_deposit_interest_rates covers the e-Fixed Deposit product available through HLB Connect online banking; it adds a placement_method field indicating the deposit channel and returns the same tenure-rate structure.
Foreign Currency and Promotions
get_foreign_currency_fd_interest_rates covers 10 currencies: USD, AUD, CAD, CNY, EUR, GBP, HKD, JPY, NZD, and SGD. The interest_rates array maps each tenure to a rates object keyed by currency code, while currencies_min_deposit provides per-currency minimum opening amounts. get_fd_promotions filters Hong Leong Bank's promotions page for Fixed Deposit, FD, or Deposit-related campaigns, returning each as an object with title, description, link, and category fields.
- Build a Malaysian bank rate comparison tool that tracks HLB's FD rates across all tenures alongside other banks
- Monitor the
effective_datefield to detect when Hong Leong Bank updates its standard fixed deposit rates - Aggregate
currencies_min_depositand per-currency rates to help users decide which foreign currency FD to open - Alert users when new promotions appear by polling
get_fd_promotionsand diffing the returned titles - Pull
terms_and_conditionsPDF links fromget_fd_product_detailsto auto-populate a document management system - Filter Shariah-compliant products using the
product_typefield returned byget_fd_product_details - Compare e-Fixed Deposit rates against standard FD rates using the two dedicated rate endpoints
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Hong Leong Bank have an official public developer API?+
What does `get_fd_product_details` return that the dedicated rate endpoints don't?+
get_fd_product_details returns page-level detail for a specific product URL: the product_type field distinguishing Conventional from Shariah-compliant products, terms_and_conditions as an array of objects with text and url pointing to PDF documents, and the minimum_deposit string as found on that page. The dedicated rate endpoints return structured rate arrays without terms documents or product-type classification.Does the API cover Hong Leong Islamic Bank's FD-equivalent products like General Investment Account?+
get_fd_product_details. Islamic products labeled Shariah-compliant appear under product_type. However, a dedicated endpoint for General Investment Account or commodity murabahah products is not currently included. You can fork this API on Parse and revise it to add an endpoint targeting those specific product pages.Does `get_foreign_currency_fd_interest_rates` return historical rate data?+
get_fixed_deposit_interest_rates endpoint does include an effective_date field for the standard product, but neither endpoint maintains a historical rate series. You can fork this API on Parse and revise it to store and expose historical snapshots.