zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
On this page
  • Playground
  • Code examples
  • Full reference
  • Related APIs
News/Marketwatch
Logo Marketwatch

Marketwatch

MarketWatch — RSS feed by section

Endpoints
1
Requests
655
Updated
5 hours ago
For LLMs
llms.txt
Endpoint healthnot yet measured
  • feednot measured
no measurements yetdaily 01:00 WIB

Playground

1 endpoint
GET/v1/news:marketwatch/feed5m cache2 paramschecking key…
Parameters
sectionenum

MarketWatch feed. Default topstories

limitnumber

Max items, 1-50. Default 20. topstories, realtimeheadlines and bulletins carry only 10

·
Response
EXAMPLE
{
  "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"
}

Code examples

Feed
zpi-sdkrecommended
// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";

const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });

const data = await client.run("news:marketwatch", "feed", {
  "section": "topstories",
  "limit": 20
});
console.log(data);
Full SDK reference →
request.sh
curl -X GET "https://api.zpi.web.id/v1/news:marketwatch/feed?section=topstories&limit=20" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Full reference

1 endpoint · plain text
GETFeed/v1/news:marketwatch/feedMarketWatch — RSS feed by section

Parameters

sectionenumoptional
MarketWatch feed. Default topstories Values: topstories, marketpulse, realtimeheadlines, bulletins.
limitnumberoptional
Max items, 1-50. Default 20. topstories, realtimeheadlines and bulletins carry only 10

Request

curl -X GET "https://api.zpi.web.id/v1/news:marketwatch/feed?section=topstories&limit=20" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "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"
}

Related APIs

More in news

Cnbc

news/cnbc

CNBC — RSS feed by section

586 calls·5m cache

Ojk Siaran Pers

news/ojk-siaran-pers

Otoritas Jasa Keuangan — press releases (siaran pers)

642 calls·10m cache

Bi Siaran Pers

news/bi-siaran-pers

Bank Indonesia — press releases (siaran pers)

428 calls·10m cache

Coindesk

news/coindesk

CoinDesk — RSS feed

564 calls·5m cache

Cointelegraph

news/cointelegraph

Cointelegraph — RSS feed, main / tag / category

322 calls·5m cache

Google News

news/google-news

Latest news feed from Google News.

325 calls·5m cache
Browse APIsPricingDocsMCP serverGet an API key
zapi.One key, one response shape.
TermsPrivacyCookiesAUPRefunds© 2026