# Moneyhero — 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.

> Compare Hong Kong credit cards side-by-side with detailed information on cashback rewards, annual fees, income requirements, interest rates, and welcome offers to find the best card for your needs. Search and filter cards by features, rewards programs, and eligibility criteria to make an informed decision.

**Category:** Finance & Markets | **Website:** [moneyhero.com.hk/](https://moneyhero.com.hk/) | **Docs:** [parse.bot/marketplace/4420d279-2d3e-4b07-ba92-fa27130baa60/moneyhero-com-hk-api](https://parse.bot/marketplace/4420d279-2d3e-4b07-ba92-fa27130baa60/moneyhero-com-hk-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-moneyhero-com-hk-api-4420d279/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_card_details

Get comprehensive details for a specific credit card by its slug. Returns cashback rates, miles rewards, fees, interest rates (APR), application requirements, welcome offer details, features, highlights, and all raw attributes in Chinese. The slug is obtained from list_credit_cards or search_credit_cards results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Card slug identifier from list_credit_cards or search_credit_cards results[*].detail_slug. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-moneyhero-com-hk-api-4420d279/get_card_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### list_credit_cards

List all credit cards available on MoneyHero HK with basic comparison data. Returns card names, exclusive offers, welcome offer values, card benefits, minimum annual income requirements, annual fees, and slugs for detail lookups. The full catalog is returned in a single page.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-moneyhero-com-hk-api-4420d279/list_credit_cards \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_credit_cards

Search and filter credit cards by category. Returns cards matching the specified category with basic comparison data including name, offers, benefits, fees, and income requirements. Categories correspond to MoneyHero's card classification pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Card category to filter by. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-moneyhero-com-hk-api-4420d279/search_credit_cards \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>"}'
```
