Discover/moneysupermarket.com API
live

moneysupermarket.com APImoneysupermarket.com

Access live UK mortgage rates and product search via the MoneySuperMarket API. Compare rates by LTV band, region, deposit, and product type across lenders.

Endpoints
2
Updated
28d ago
Try it
Mortgage category. Accepted values: FirstTimeBuyer, HomePurchase, Remortgage.
api.parse.bot/scraper/b5020d03-b917-43dc-936d-5bf63f145400/<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/b5020d03-b917-43dc-936d-5bf63f145400/get_lowest_rates?category=FirstTimeBuyer' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

Get current lowest mortgage rates across product types for a given mortgage category. Returns rate data grouped by product type (TwoYearFixed, ThreeYearFixed, FiveYearFixed, Variable) and loan-to-value bands.

Input
ParamTypeDescription
categorystringMortgage category. Accepted values: FirstTimeBuyer, HomePurchase, Remortgage.
Response
{
  "type": "object",
  "fields": {
    "data": "object containing rate data grouped by product type and LTV band, each with product details and enquiry parameters"
  },
  "sample": {
    "data": {
      "data": {
        "TwoYearFixed": {
          "enquiry": {
            "page": 1,
            "pageSize": 1,
            "termTypes": [
              "TwoYears"
            ],
            "journeyType": "FirstTimeBuyer",
            "productTypes": [
              "Fixed"
            ],
            "requiredTerm": {
              "years": 28,
              "months": 0
            },
            "depositAmount": 105000,
            "propertyValue": 250000,
            "sortResultsBy": "MonthlyCost",
            "repaymentMethod": "Repayment",
            "addFeesToBalance": false
          },
          "product": {
            "lender": {
              "name": "Lloyds Bank",
              "logoUrl": "https://cdn.live.podium-solutions.co.uk/static/clients/msm/lenders/logos/Lloyds_Bank.svg"
            },
            "initialRate": 4.4,
            "initialTerm": "TwoYears",
            "productType": "Fixed",
            "initialMonthlyPayment": 751.33
          }
        },
        "FiveYearFixed": {
          "enquiry": {
            "page": 1,
            "pageSize": 1,
            "termTypes": [
              "FiveYears"
            ],
            "journeyType": "FirstTimeBuyer",
            "productTypes": [
              "Fixed"
            ],
            "requiredTerm": {
              "years": 28,
              "months": 0
            },
            "depositAmount": 105000,
            "propertyValue": 250000,
            "sortResultsBy": "MonthlyCost",
            "repaymentMethod": "Repayment",
            "addFeesToBalance": false
          },
          "product": {
            "lender": {
              "name": "Lloyds Bank"
            },
            "initialRate": 4.61,
            "initialTerm": "FiveYears",
            "productType": "Fixed",
            "initialMonthlyPayment": 769.11
          }
        }
      }
    },
    "status": "success"
  }
}

About the moneysupermarket.com API

The MoneySuperMarket API provides 2 endpoints for querying live UK mortgage data — retrieve current lowest rates grouped by product type and LTV band via get_lowest_rates, or run detailed product searches across lenders using search_mortgages with filters for property value, deposit, region, and fixed term. Each response includes per-product rate, fee, APRC, and monthly cost data drawn directly from MoneySuperMarket's comparison index.

What the API Returns

The get_lowest_rates endpoint returns current lowest mortgage rates segmented by product type — TwoYearFixed, ThreeYearFixed, FiveYearFixed, and Variable — and further broken down by loan-to-value (LTV) bands. The optional category parameter scopes results to FirstTimeBuyer, HomePurchase, or Remortgage journeys. Each rate entry includes product details and the enquiry parameters needed to fetch a full product listing.

Searching Mortgage Products

The search_mortgages endpoint accepts a broad set of filters: property_value and deposit_amount in GBP, region (England, Scotland, Wales, or NorthernIreland), journey_type, product_type (Fixed or Variable), fixed_term (TwoYears, ThreeYears, or FiveYears), and sort_by (MonthlyCost, InterestRate, or APRC). Results are paginated at 20 products per page, and the response includes pagesAvailable, totalProductsUnfiltered, and totalProductsFiltered so you can build pagination controls accurately.

Response Shape

Each product in the search_mortgages results array carries rate, fees, monthly cost, and lender details, alongside the enquiryId that ties back to a specific search session. The request object echoed in the response confirms which parameters were applied, which is useful for logging or reconstructing searches. Products are filterable at query time by product type and term length without requiring a separate API call.

Source and Coverage

MoneySuperMarket does not publish an official public developer API for mortgage data. Coverage is limited to UK mortgage products listed on the MoneySuperMarket comparison platform. Data reflects what is available at query time and may vary by region and category.

Common use cases
  • Display a live best-rate table on a UK property portal, broken down by TwoYearFixed and FiveYearFixed LTV bands
  • Build a first-time buyer mortgage calculator that inputs property value and deposit to return sorted monthly cost estimates
  • Alert users when rates drop below a threshold by polling get_lowest_rates for a given category
  • Compare remortgage options by region, filtering to Fixed products and sorting by APRC
  • Aggregate mortgage product counts across pages using totalProductsFiltered to size search result sets
  • Pre-populate a mortgage comparison widget for Scotland vs England using the region parameter
  • Track rate movements over time by logging the lowest rate per LTV band from scheduled get_lowest_rates calls
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 MoneySuperMarket offer an official developer API for mortgage data?+
No. MoneySuperMarket does not publish a public developer API or documented endpoint for mortgage rate or product data. This Parse API provides structured access to that data.
What does get_lowest_rates return and how does it differ from search_mortgages?+
get_lowest_rates returns a summary view: the current lowest rate for each product type (TwoYearFixed, ThreeYearFixed, FiveYearFixed, Variable) grouped by LTV band, for a given mortgage category. It is designed for rate-at-a-glance use cases. search_mortgages returns a full paginated list of individual mortgage products with per-product rate, APRC, fees, and monthly cost, and accepts granular filters like deposit_amount, property_value, region, and sort_by.
How does pagination work in search_mortgages?+
Results are returned 20 per page. The response includes pagesAvailable and totalProductsFiltered so you can calculate the total number of pages. Pass the page parameter to retrieve subsequent pages. If no page is specified, the first page is returned.
Does the API return individual lender eligibility checks or affordability assessments?+
Not currently. The API covers rate, fee, APRC, monthly cost, and product-type data for listed mortgage products. Eligibility checks and affordability calculations against individual lender criteria are not part of the response. You can fork this API on Parse and revise it to add an endpoint targeting that functionality if MoneySuperMarket exposes it.
Is mortgage data available for all UK regions?+
The search_mortgages endpoint accepts four region values: England, Scotland, Wales, and NorthernIreland. The get_lowest_rates endpoint filters by category (FirstTimeBuyer, HomePurchase, Remortgage) but does not accept a region parameter, so its results are UK-wide. If region-scoped lowest-rate summaries are needed, you can fork the API on Parse and revise get_lowest_rates to add that filter.
Page content last updated . Spec covers 2 endpoints from moneysupermarket.com.
Related APIs in FinanceSee all →
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.
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.
nab.com.au API
Get current NAB home loan, personal loan, and credit card rates along with product details, then calculate repayments or compare lending options across their full product range. Access live interest rates, business lending information, and rates hub data to make informed borrowing decisions.
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
zillow.com API
Search for homes for sale, rent, or recently sold listings on Zillow while accessing detailed property information, Zestimates, agent profiles, and current mortgage rates all in one place. Streamline your real estate research by gathering comprehensive property details, agent information, and financing options without navigating multiple pages.