# Hong Leong Bank — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Check Hong Leong Bank's fixed deposit offerings, compare interest rates across regular, Islamic, and foreign currency options, and discover current promotions to find the best rates for your savings. View detailed product information to make informed decisions about where to place your deposits.

**Category:** Finance & Markets | **Website:** [hlb.com.my/](https://hlb.com.my/) | **Docs:** [parse.bot/marketplace/cf2ed996-9df3-4a60-b862-5d71e94f123e/hlb-com-my-api](https://parse.bot/marketplace/cf2ed996-9df3-4a60-b862-5d71e94f123e/hlb-com-my-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-hlb-com-my-api-cf2ed996/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_efixed_deposit_interest_rates

Get interest rates for the e-Fixed Deposit product available via HLB Connect online banking. Returns per-tenure interest rates and the placement method.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hlb-com-my-api-cf2ed996/get_efixed_deposit_interest_rates \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_fd_product_details

Get detailed information for a specific fixed deposit product page including interest rates, minimum deposit, product type, and terms and conditions documents. The product_url can be obtained from get_fixed_deposit_products.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_url` | string | Yes | Full URL of the product page to scrape. Obtain from get_fixed_deposit_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hlb-com-my-api-cf2ed996/get_fd_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_url":"<string>"}'
```

### get_fd_promotions

Get active fixed deposit promotions and campaigns from Hong Leong Bank. Filters promotions containing Fixed Deposit, FD, or Deposit keywords from the bank's promotions API. May return an empty list if no FD-related promotions are currently active.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hlb-com-my-api-cf2ed996/get_fd_promotions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_fixed_deposit_interest_rates

Get interest rates for the standard Fixed Deposit Account including all tenures from 1 month to 60 months. Returns the effective date, minimum deposit requirements, and per-tenure interest rates.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hlb-com-my-api-cf2ed996/get_fixed_deposit_interest_rates \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_fixed_deposit_products

List all available fixed deposit products from Hong Leong Bank. Returns product names with URLs to their detail pages. Single-page response with no pagination parameters.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hlb-com-my-api-cf2ed996/get_fixed_deposit_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_foreign_currency_fd_interest_rates

Get interest rates for the Foreign Currency Fixed Deposit across multiple currencies (USD, AUD, CAD, CNY, EUR, GBP, HKD, JPY, NZD, SGD) and minimum deposit requirements per currency.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hlb-com-my-api-cf2ed996/get_foreign_currency_fd_interest_rates \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
