Discover/moneyfactscompare.co.uk API
live

moneyfactscompare.co.uk APImoneyfactscompare.co.uk

Access UK mortgage product data from moneyfactscompare.co.uk. Browse by category, search by loan amount and LTV, and retrieve rates, fees, and lender details.

Endpoints
4
Updated
26d ago
Try it
The mortgage category to fetch. Accepted values: remortgage, moving-home, first-time-buyer, buy-to-let.
api.parse.bot/scraper/618de6a9-7f5a-4f71-a274-f53a3e54d9d9/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/618de6a9-7f5a-4f71-a274-f53a3e54d9d9/get_mortgage_products?category=moving-home' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

Get mortgage products for a specific category. Returns all products from the category's listing page with rate, fee, and term details.

Input
ParamTypeDescription
categorystringThe mortgage category to fetch. Accepted values: remortgage, moving-home, first-time-buyer, buy-to-let.
Response
{
  "type": "object",
  "fields": {
    "category": "string — the category that was queried",
    "products": "array of mortgage product objects with rate, lender, fee, and term details",
    "total_products": "integer — count of products returned"
  },
  "sample": {
    "data": {
      "category": "remortgage",
      "products": [
        {
          "id": "1228264_1276059_1182690_102_1248190_0",
          "aprc": 6.3,
          "rate": 4.14,
          "max_ltv": 60,
          "rate_type": "Variable",
          "free_legal": false,
          "description": "4.14% Variable (collared at 0.39%) for 2 years",
          "lender_name": "Nationwide BS",
          "product_fee": 999,
          "revert_rate": 6.49,
          "product_name": "Variable 4.14000",
          "free_valuation": false,
          "max_loan_amount": null,
          "min_loan_amount": null,
          "monthly_payment": 1124.75,
          "fixed_term_years": 2,
          "total_amount_payable": 413925.68,
          "initial_period_months": 24,
          "overpayment_allowance": null,
          "early_repayment_charge": null
        }
      ],
      "total_products": 2248
    },
    "status": "success"
  }
}

About the moneyfactscompare.co.uk API

The Moneyfactscompare API exposes 4 endpoints for querying UK mortgage products, covering remortgage, first-time buyer, moving home, and buy-to-let categories. The get_mortgage_products endpoint returns full product listings per category including interest rates, lender names, product fees, and term details. Search filtering via search_mortgages accepts loan amount, property value, mortgage term, and buyer type as parameters.

What the API Covers

This API surfaces mortgage product data from moneyfactscompare.co.uk across four categories: remortgage, moving-home, first-time-buyer, and buy-to-let. Each product object includes the lender name, initial interest rate, rate type (Fixed or Variable), product/arrangement fee, maximum LTV ratio, and a full product description. The get_mortgage_categories endpoint returns the current list of supported categories so you can enumerate them programmatically without hardcoding values.

Browsing and Searching Products

get_mortgage_products accepts a category string and returns the full product listing for that category along with a total_products count. search_mortgages narrows results by accepting four optional parameters: amount (GBP borrow amount), value (property value in GBP), term (years as a numeric string), and buyer_type (e.g. First Time Buyer, Buy To Let). The response includes a search_params object echoing the criteria used, which is useful for logging or UI display.

Retrieving Individual Product Details

get_mortgage_product_details takes a product_id — obtained from the id field in get_mortgage_products or search_mortgages results — alongside a category and returns structured fields: rate, max_ltv, rate_type, description, lender_name, and product_fee. The product_fee and max_ltv fields may return null where the source data does not specify a value, so null-handling is required in consuming code.

Data Shape and Limitations

All monetary inputs to search_mortgages are passed as numeric strings (e.g. "250000"), not integers. The max_ltv field is a number (e.g. 75, 90) rather than a percentage string. Rate data reflects the initial interest rate only — reversion rates or overall cost for comparison (APRC) are not currently returned as discrete fields.

Common use cases
  • Build a mortgage comparison table filtered by buyer type and LTV using search_mortgages
  • Aggregate lender product counts across all four categories using get_mortgage_products
  • Track changes in initial interest rates for fixed-rate remortgage products over time
  • Identify the lowest product fees for a given loan-to-value band in the buy-to-let category
  • Populate a mortgage eligibility tool by querying products for a given borrow amount and property value
  • Alert users when new fixed-rate products appear in the first-time-buyer category
  • Build a lender-focused dashboard grouping all available products by lender_name across categories
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 Moneyfactscompare have an official developer API?+
Moneyfacts Group does offer data services for financial institutions under commercial agreements, but there is no self-serve public developer API available at moneyfactscompare.co.uk. This Parse API provides structured access to the product data on that site.
What does `get_mortgage_product_details` return beyond what the listing endpoint includes?+
get_mortgage_product_details returns the full description field — a plain-text product description — alongside structured fields like rate, rate_type, max_ltv, product_fee, and lender_name. The listing endpoint get_mortgage_products returns a similar field set but may truncate or omit the full description. Use the detail endpoint when you need the complete product narrative.
Are APRC, reversion rates, or monthly repayment figures available?+
Not currently. The API returns the initial interest rate, rate type, product fee, and maximum LTV. APRC, reversion rates, and calculated monthly repayment amounts are not exposed as discrete response fields. You can fork this API on Parse and revise it to add those fields if they appear on the source product pages.
Does the search endpoint support pagination or return all matching results at once?+
The search_mortgages endpoint returns all matching products in a single response along with a total count. There are no page or offset parameters currently supported. For large result sets, filtering by buyer_type, amount, and value together is the primary way to reduce the returned set. You can fork the API on Parse and revise it to add pagination parameters if needed.
Can I filter products by rate type (Fixed vs Variable) within a category?+
The rate_type field is returned per product in both get_mortgage_products and get_mortgage_product_details responses, but it is not currently an input filter parameter for either endpoint. Filtering by rate type must be done client-side after receiving the full product array. You can fork the API on Parse and revise it to add a rate_type filter parameter.
Page content last updated . Spec covers 4 endpoints from moneyfactscompare.co.uk.
Related APIs in FinanceSee all →
moneysupermarket.com API
Browse and compare live mortgage rates across multiple lenders on MoneySuperMarket. Search for mortgage products by property value, deposit, term, region, and product type to find competitive rates and detailed cost breakdowns.
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.
moneysavingexpert.com API
Search MoneySavingExpert's community forums for money-saving advice, browse discussions on mortgages, banking, and savings deals, and stay updated with the latest financial news and best buy recommendations. Access real-time deals and expert tips shared by the community to make informed decisions about your finances.
comparis.ch API
Search and compare real estate listings, cars, and mortgage interest rates across the Swiss marketplace Comparis.ch with detailed filtering options and property/vehicle information. Get current mortgage rates and access comprehensive details on available properties and cars to make informed buying or financing decisions.
commonwealthbank.com.au API
Access Commonwealth Bank's loan product listings with real-time interest rates, comparison rates, and fees across home loans and personal loans. Includes current promotional offers, product variations, and LVR-based rate tiers.
screwfix.com API
Access Screwfix's full product catalog — browse category hierarchies, retrieve paginated product listings with pricing and ratings, fetch detailed product specifications, and search by keyword. Ideal for price monitoring, product research, and catalog analysis.
caixabank.es API
Access CaixaBank's full catalogue of financial products — accounts, cards, loans, mortgages, savings, investments, insurance, and pension plans — along with real-time pricing, TAE/TIN interest rates, and branch or ATM locations across Spain.
moneyhero.com.hk API
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.