# Marketwatch — Zapi reference > MarketWatch — RSS feed by section **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ content, message, errors }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/news/marketwatch - Endpoint catalog: https://zpi.web.id/category/news - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Marketwatch **Category:** news · **Slug:** `marketwatch` **Detail page:** https://zpi.web.id/api/news/marketwatch MarketWatch — RSS feed by section **Tags:** news, marketwatch ### Feed MarketWatch — RSS feed by section - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/news:marketwatch/feed` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `section` | enum(topstories|marketpulse|realtimeheadlines|bulletins) | query | no | MarketWatch feed. Default topstories | | `limit` | number | query | no | Max items, 1-50. Default 20. topstories, realtimeheadlines and bulletins carry only 10 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/news:marketwatch/feed?section=topstories&limit=20" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/news:marketwatch/feed?section=topstories&limit=20", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/news:marketwatch/feed?section=topstories&limit=20", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "ok": true, "count": 10, "items": [ { "link": "https://www.marketwatch.com/story/my-son-does-not-work-yet-he-pays-500-for-aca-health-insurance-how-is-that-fair-92f578c4?mod=mw_rss_topstories", "title": "My son does not work, yet pays $500 for Affordable Care Act health insurance. Is that fair?", "pubDate": "Thu, 20 Aug 2026 23:00:00 GMT", "summary": "“I see people who have a lot of money but little or no taxable income who still qualify for ACA Marketplace subsidies.”" }, { "link": "https://www.marketwatch.com/story/im-my-mother-in-laws-power-of-attorney-executor-and-trustee-do-i-hold-all-the-power-a11968a2?mod=mw_rss_topstories", "title": "I hold my mother-in-law’s power of attorney. I’m also her executor and trustee. Do I have too much power over her affairs?", "pubDate": "Thu, 20 Aug 2026 22:45:00 GMT", "summary": "“There is a lot of legal and financial power in my hands.”" }, { "link": "https://www.marketwatch.com/story/our-4-year-old-son-has-100-000-in-his-529-account-should-we-buy-him-stocks-instead-3ca745b2?mod=mw_rss_topstories", "title": "Our 4-year-old son has $100,000 in his 529 account. Is a bull market a bad time to buy him stocks instead?", "pubDate": "Thu, 20 Aug 2026 22:00:00 GMT", "summary": "“I’d love for our son to be able to attend college without needing to take out student loans.”" }, { "link": "https://www.marketwatch.com/story/were-in-our-50s-and-have-1-5-million-in-traditional-401-k-s-is-it-too-early-to-start-roth-conversions-2d0f9287?mod=mw_rss_topstories", "title": "We’re in our 50s and have $1.5 million in traditional 401(k)s. Is it too early to start Roth conversions?", "pubDate": "Thu, 20 Aug 2026 21:01:00 GMT", "summary": "“The last adviser we worked with lost a significant portion of our portfolio.”" }, { "link": "https://www.marketwatch.com/story/treasury-rout-restarts-one-day-after-bessents-beefed-up-buyback-plan-972766a1?mod=mw_rss_topstories", "title": "Anxious bond market sends troubling message to investors: There’s no easy fix for U.S. debt", "pubDate": "Thu, 20 Aug 2026 19:40:00 GMT", "summary": "Treasury Secretary Scott Bessent’s plan to calm markets is being short-circuited." }, { "link": "https://www.marketwatch.com/story/sports-betting-to-build-wealth-is-becoming-the-new-american-dream-1e29b728?mod=mw_rss_topstories", "title": "Sports betting to build wealth is becoming the new American dream", "pubDate": "Thu, 20 Aug 2026 19:14:00 GMT", "summary": "More people under 30 are using gambling as a shortcut to buying a home or paying student loans" }, { "link": "https://www.marketwatch.com/story/the-bond-market-is-going-to-burst-the-stock-market-bubble-1c6f0971?mod=mw_rss_topstories", "title": "The bond market is going to burst the stock-market bubble", "pubDate": "Thu, 20 Aug 2026 19:06:00 GMT", "summary": "Rising yields threaten everything, especially overextended equities." }, { "link": "https://www.marketwatch.com/story/modernas-personalized-mrna-shot-could-reshape-the-fight-against-skin-cancer-but-it-may-also-be-overhyped-a6f1bc88?mod=mw_rss_topstories", "title": "Moderna’s personalized mRNA shot could reshape the fight against skin cancer — but it may also be overhyped", "pubDate": "Thu, 20 Aug 2026 19:01:00 GMT", "summary": "Doctors and patients are excited about the possible breakthrough, but some analysts believe there’s too much hype." } ], "source": "marketwatch.com", "section": "topstories" } ``` --- _Generated: 2026-08-21T07:46:32.941Z_