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
14d 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 →
mazda.ca API
Find current vehicle deals, financing rates, lease options, and incentives across all Mazda Canada models and trims, with pricing tailored to your province. Get instant payment quotes to compare your options and discover the best offers available.
13f.info API
13f.info API
etoro.com API
Monitor top eToro traders by accessing their profiles, portfolio holdings, performance statistics, and trading history to inform your investment decisions. Discover trending stocks and cryptocurrencies, search for specific instruments, and view detailed market data and news to stay updated on investment opportunities.
vegasinsider.com API
Retrieve MLB betting odds from major sportsbooks including bet365, FanDuel, and DraftKings, covering Moneyline, Total, and Runline markets for any supported date. Easily compare odds across books to identify the best available lines.
bizapedia.com API
Search for detailed business profiles and contact information from Bizapedia, including company details, employee data, and communication channels. Access comprehensive business intelligence to research companies and build targeted contact lists.
customs.gov.mv API
Check import/export duties, tariff classifications, and exchange rates for Maldives customs compliance, plus track vessel movements, company registrations, and declaration statuses. Get real-time data directly from the official customs portal to streamline your trade and logistics operations.
morningstar.com.au API
Access comprehensive financial data for Australian stocks, ETFs, and managed funds including key metrics, valuations, dividends, and historical prices. Search securities, review company profiles and ownership details, and stay informed with market news and upcoming dividend information.
immobiliare.it API
Search Italian property listings for sale or rent, browse real estate agencies, and explore price trends across Italian cities — all via immobiliare.it.