Discover/MoneySuperMarket API
live

MoneySuperMarket 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.

Endpoint health
verified 7d ago
search_mortgages
get_lowest_rates
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d ago

What is the MoneySuperMarket 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.

Try it
Mortgage category.
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.
Call it over HTTPgrab 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'
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 moneysupermarket-com-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.

from parse_apis.moneysupermarket_mortgage_api import (
    MoneySuperMarket,
    MortgageCategory,
    Region,
    Sort,
    FixedTerm,
    ProductType,
    RepaymentMethod,
)

client = MoneySuperMarket()

# Get lowest rates overview for first-time buyers
overview = client.rateoverviews.get(category=MortgageCategory.FIRST_TIME_BUYER)
for key, entry in overview.data.items():
    print(key, entry.product.initial_rate, entry.product.lender.name)

# Search for fixed-rate mortgage products sorted by interest rate
for product in client.mortgageproducts.search(
    property_value=300000,
    deposit_amount=60000,
    required_term_years=25,
    region=Region.ENGLAND,
    journey_type=MortgageCategory.FIRST_TIME_BUYER,
    sort_by=Sort.INTEREST_RATE,
    fixed_term=FixedTerm.FIVE_YEARS,
    repayment_method=RepaymentMethod.REPAYMENT,
    limit=5,
):
    print(product.name, product.lender.name, product.costs.aprc, product.costs.total_fees)
All endpoints · 2 totalmissing one? ·

Get current lowest mortgage rates across product types for a given mortgage category. Returns rate data as a map keyed by product type (TwoYearFixed, ThreeYearFixed, FiveYearFixed, Variable) and loan-to-value bands (SixtyLoanToValue, SeventyFiveLoanToValue, etc.). Each entry contains the best product's initial rate, monthly payment, lender info, and a pre-built enquiry object for drilling into that segment. Not paginated — returns the full rate overview in one call.

Input
ParamTypeDescription
categorystringMortgage category.
Response
{
  "type": "object",
  "fields": {
    "data": "object keyed by product type / LTV band name, each value has product (initialRate, initialMonthlyPayment, lender, productType, initialTerm) and enquiry parameters"
  },
  "sample": {
    "data": {
      "data": {
        "Variable": {
          "enquiry": {
            "journeyType": "FirstTimeBuyer",
            "sortResultsBy": "MonthlyCost"
          },
          "product": {
            "lender": {
              "name": "Barclays",
              "logoUrl": "https://cdn.live.podium-solutions.co.uk/static/clients/msm/lenders/logos/Barclays.svg"
            },
            "initialRate": 3.96,
            "initialTerm": "TwoYears",
            "productType": "Variable",
            "initialMonthlyPayment": 714.77
          }
        },
        "TwoYearFixed": {
          "enquiry": {
            "journeyType": "FirstTimeBuyer",
            "sortResultsBy": "MonthlyCost"
          },
          "product": {
            "lender": {
              "name": "Lloyds Bank",
              "logoUrl": "https://cdn.live.podium-solutions.co.uk/static/clients/msm/lenders/logos/Lloyds_Bank.svg"
            },
            "initialRate": 4.32,
            "initialTerm": "TwoYears",
            "productType": "Fixed",
            "initialMonthlyPayment": 744.61
          }
        }
      }
    },
    "status": "success"
  }
}

About the MoneySuperMarket API

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.

Reliability & maintenanceVerified

The MoneySuperMarket API is a managed, monitored endpoint for moneysupermarket.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when moneysupermarket.com 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 moneysupermarket.com 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
7d ago
Latest check
2/2 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
  • 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,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 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.
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.
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.