moneysavingexpert.com APImoneysavingexpert.com ↗
Access MoneySavingExpert forum data via API: categories, discussions, comments, search, and MSE news across mortgages, banking, and savings topics.
curl -X GET 'https://api.parse.bot/scraper/0562cc27-5751-430a-8896-99d5c51183cb/get_forum_categories?page=1&limit=5' \ -H 'X-API-Key: $PARSE_API_KEY'
Lists all forum categories with descriptions and stats including discussion and comment counts.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| limit | integer | Max categories per page. |
{
"type": "object",
"fields": {
"data": "array of category objects with categoryID, name, description, url, countDiscussions, countComments",
"status": "string, always 'success'"
},
"sample": {
"data": [
{
"url": "https://forums.moneysavingexpert.com/categories/credit-cards",
"name": "Credit cards",
"categoryID": 11,
"description": "A place to discuss all things credit card-related with other MoneySavers.",
"countComments": 609260,
"countDiscussions": 80094
}
],
"status": "success"
}
}About the moneysavingexpert.com API
The MoneySavingExpert API provides 9 endpoints for reading forum data from moneysavingexpert.com, covering categories, paginated discussions, per-thread comments, and keyword search. The get_discussion_details endpoint returns full thread metadata alongside up to 50 comments per discussion, while dedicated endpoints for mortgages, banking, savings, and MSE news let you pull topic-specific threads without filtering manually.
Forum Categories and Discussions
The get_forum_categories endpoint lists all forum categories with categoryID, name, description, countDiscussions, and countComments. These IDs feed directly into get_category_discussions, which accepts a required category_id plus optional page and limit params and returns discussion objects including discussionID, name, body, url, dateInserted, countComments, and countViews. Well-known category IDs include 11 for Credit Cards, 15 for Mortgages, 17 for Savings, and 20 for Banking.
Topic-Specific Shortcuts
Four convenience endpoints — get_mortgage_best_buys, get_banking_deals, get_savings_deals, and get_latest_news — scope results to their respective forum sections without requiring you to look up a category_id first. All four support page and limit for pagination. The get_latest_news endpoint targets the MSE News & Blogs category and omits countViews from its response, which the other three include.
Search and Thread Details
search_forum accepts a required query string and returns matching discussions with discussionID, name, body, url, categoryID, dateInserted, and countComments. To fetch full thread content, pass the discussion_id to get_discussion_details, which returns both the discussion metadata and a comments array (up to 50 entries per call) in a single response object.
Main Site Pages
get_main_site_page fetches content from the main moneysavingexpert.com domain by accepting an optional path parameter (e.g. /savings/ or /mortgages/best-buys/). It returns the resolved url and raw content as an HTML string. Note that some paths may be blocked by Cloudflare protection, so results for this endpoint are not guaranteed on every request.
- Monitor new mortgage discussion threads by polling
get_mortgage_best_buysfor changes incountCommentsor newdiscussionIDvalues. - Build a savings rate tracker that searches for specific bank names using
search_forumand surfaces threads bydateInserted. - Aggregate community sentiment on credit card products by fetching discussions in category 11 via
get_category_discussionsand readingbodytext. - Track MSE editorial coverage by pulling the latest entries from
get_latest_newsand indexingnameanddateInsertedfields. - Fetch complete Q&A threads on banking topics using
get_discussion_detailsto retrieve discussion metadata plus associated comments in one call. - Map forum category activity levels by comparing
countDiscussionsandcountCommentsacross all categories returned byget_forum_categories. - Extract structured article or guide text from the main MSE site by calling
get_main_site_pagewith specific paths like/savings/.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does MoneySavingExpert have an official developer API?+
How many comments does `get_discussion_details` return, and can I paginate them?+
Does the API expose user profile data for forum members?+
Is the `get_main_site_page` endpoint reliable for all MSE paths?+
Does the API cover MSE's Best Buy tables or deal alerts outside of forum discussions?+
get_mortgage_best_buys, get_banking_deals, and get_savings_deals endpoints return forum discussion threads about those topics, not the curated Best Buy comparison tables from the editorial site. You can fork this API on Parse and revise it to parse specific Best Buy table pages via get_main_site_page paths.