Discover/Com API
live

Com APImoneyhero.com.hk

Access Hong Kong credit card data from MoneyHero.com.hk — cashback rates, miles rewards, annual fees, income requirements, APR, and welcome offers via 3 endpoints.

Endpoint health
verified 3d ago
list_credit_cards
search_credit_cards
get_card_details
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the Com API?

The MoneyHero HK API covers Hong Kong credit cards across 3 endpoints, returning card names, cashback rates, miles rewards, annual fees, income requirements, interest rates, and welcome offer values in Traditional Chinese. The get_card_details endpoint delivers fee breakdowns, APR, Octopus auto-reload limits, and raw attributes for a specific card identified by its slug. search_credit_cards filters results by category including cashback, miles, dining, and travel.

Try it

No input parameters required.

api.parse.bot/scraper/9f40f95b-71b0-4eab-903c-9bd5bdfa309c/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9f40f95b-71b0-4eab-903c-9bd5bdfa309c/list_credit_cards' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace moneyhero-com-hk-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: MoneyHero HK Credit Card API — browse, filter, and drill into card details."""
from parse_apis.moneyhero_hong_kong_credit_card_api import MoneyHero, Category, CardNotFound

client = MoneyHero()

# List all available credit cards (single page); print first few summaries.
for card in client.creditcardsummaries.list(limit=3):
    print(card.name, card.annual_fee, card.welcome_offer_value)

# Filter by category using the Category enum — e.g. cashback cards only.
cashback_card = client.creditcardsummaries.search(category=Category.CASHBACK, limit=1).first()
if cashback_card:
    print(cashback_card.name, cashback_card.card_benefits, cashback_card.min_annual_income)

# Drill into full details from a summary via the .details() navigation op.
if cashback_card:
    detail = cashback_card.details()
    print(detail.name, detail.slug)
    if detail.cashback:
        print(detail.cashback.dining_cashback, detail.cashback.overseas_cashback)
    if detail.fees:
        print(detail.fees.annual_fee, detail.fees.foreign_currency_fee)

# Direct point-lookup by slug when you already know the card identifier.
try:
    citi = client.creditcards.get(slug="citi-cash-back-card")
    print(citi.name, citi.welcome_offer)
    if citi.interest_rates:
        print(citi.interest_rates.retail_apr, citi.interest_rates.interest_free_period)
except CardNotFound as exc:
    print(f"Card not found: {exc.slug}")

print("exercised: creditcardsummaries.list / creditcardsummaries.search / summary.details / creditcards.get")
All endpoints · 3 totalmissing one? ·

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.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "cards": "array of card summary objects with name, image_url, exclusive_offer, welcome_offer_value, card_benefits, min_annual_income, annual_fee, detail_slug, detail_url",
    "total": "integer - total number of cards returned"
  }
}

About the Com API

What the API Covers

The API exposes credit card comparison data sourced from MoneyHero.com.hk, a Hong Kong financial comparison platform. All text fields are in Traditional Chinese, reflecting the Hong Kong market. The three endpoints together cover the full browse-and-detail flow: listing all cards, filtering by category, and retrieving per-card details.

Endpoints and Key Fields

list_credit_cards returns an array of card objects alongside a total count. Each object includes name, image_url, exclusive_offer, welcome_offer_value, card_benefits, min_annual_income, and annual_fee. No input parameters are required — it returns the full card catalogue in a single call.

search_credit_cards accepts an optional category parameter. Accepted values include cashback, miles, dining, travel, best-deals, and all. The response mirrors the list structure but scoped to that category, and the returned category field confirms which filter was applied.

get_card_details takes a slug string (e.g. citi-cash-back-card) and returns the most granular data: a fees object covering annual_fee, annual_fee_waiver, foreign_currency_fee, minimum_payment, and late_payment_charge; a cashback object with separate rates for dining, overseas, local, local online shopping, and overseas online shopping; an octopus object with max_auto_reload; and arrays for features and highlights. The url field links to the canonical card detail page on MoneyHero.

Data Scope and Language

All card data reflects Hong Kong-issued cards and is presented in Traditional Chinese. Income requirements (min_annual_income) are in HKD. Slugs needed for get_card_details can be obtained from list_credit_cards or search_credit_cards response objects.

Reliability & maintenanceVerified

The Com API is a managed, monitored endpoint for moneyhero.com.hk — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when moneyhero.com.hk changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official moneyhero.com.hk API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a Hong Kong credit card comparison tool filtered by cashback, miles, or dining category using search_credit_cards
  • Surface minimum annual income requirements to pre-qualify users before recommending specific cards
  • Display APR and fee breakdowns from get_card_details for transparency in a personal finance app
  • Aggregate welcome offer values across all cards with list_credit_cards to rank promotions
  • Show Octopus card auto-reload limits for transit-focused card recommendations
  • Compare foreign currency transaction fees across cards for users who travel frequently
  • Populate a card detail page with highlights, features, and cashback tiers pulled from a single get_card_details call
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does MoneyHero.com.hk have an official developer API?+
MoneyHero does not publish a public developer API or documentation for third-party access to its credit card data.
What does `get_card_details` return that `list_credit_cards` does not?+
get_card_details adds granular fields absent from the listing endpoints: the full fees object (annual fee waiver, foreign currency fee, late payment charge, minimum payment), itemised cashback rates by spend category (dining, overseas, local online), the octopus object with max auto-reload value, and features and highlights arrays. The listing endpoints return only summary fields sufficient for a comparison grid.
Are miles reward rates included in the card data?+
The get_card_details endpoint returns miles-related data within raw attributes and highlights where the card supports miles rewards. Dedicated structured fields for miles earn rates per dollar spent are not broken out as discrete named fields in the current response schema. You can fork this API on Parse and revise it to add a structured miles object alongside the existing cashback object.
Does the API cover personal loan or mortgage products from MoneyHero?+
Not currently. The API covers credit cards only, across the listing and detail endpoints. You can fork it on Parse and revise it to add endpoints targeting MoneyHero's personal loan or mortgage comparison pages.
How do I find the correct slug to pass to `get_card_details`?+
Call list_credit_cards or search_credit_cards first. Each card object in the response includes a slug field (e.g. dbs-black-world-mastercard) that can be passed directly as the slug parameter to get_card_details.
Page content last updated . Spec covers 3 endpoints from moneyhero.com.hk.
Related APIs in FinanceSee all →
paisabazaar.com API
Browse and compare credit cards from multiple banks, filtering by category or specific issuers to find cards matching your rewards preferences and eligibility. Get detailed information on fees, rewards programs, and requirements to make informed decisions about which card suits your financial needs.
nerdwallet.com API
Access current mortgage rates, top-rated credit card recommendations, detailed card information, and expert financial articles — all sourced from NerdWallet. Compare lenders, explore card features, APRs, rewards programs, and stay up to date with mortgage guides and resources.
hk.trip.com API
Search and compare flights, hotels, trains, and attractions across Hong Kong's travel marketplace, with access to hotel reviews and trending destinations. Plan your complete trip by browsing real-time availability and pricing for all major transportation and accommodation options.
hkab.org.hk API
Access real-time Hong Kong HIBOR interest rates and daily exchange rates to stay updated on key financial benchmarks. Get the latest market highlights and rate information directly from the Hong Kong Association of Banks to inform your financial decisions.
hkex.com.hk API
Access real-time stock quotes, track market indices, view historical charts, and search for securities listed on the Hong Kong Stock Exchange. Stay informed with live company announcements and daily quotation reports to make better trading decisions.
kayak.com.hk API
Search for flights and compare prices across airlines and routes, including flexible-date searches across multiple origin airports. View monthly price calendars to find the cheapest travel dates and get real-time fare information for any route.
moneyfactscompare.co.uk API
Find and compare mortgage products from Moneyfacts with detailed specifications including rates, terms, and eligibility requirements. Browse by category, search for specific mortgages, and access comprehensive product details to help you find the best mortgage option.
openrice.com API
Search for restaurants across Hong Kong and discover detailed information including reviews, cuisines, districts, and award-winning establishments. Browse new restaurant openings and filter by location or cuisine type to find exactly what you're looking for.