# Cnbc — Zapi reference > CNBC — 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/cnbc - 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 --- ## Cnbc **Category:** news · **Slug:** `cnbc` **Detail page:** https://zpi.web.id/api/news/cnbc CNBC — RSS feed by section **Tags:** news, cnbc ### Feed CNBC — RSS feed by section - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/news:cnbc/feed` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `section` | enum(top-news|business|finance|economy|investing|earnings|politics|international) | query | no | CNBC channel. Default top-news | | `limit` | number | query | no | Max items, 1-50. Default 20. Each channel carries 30 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/news:cnbc/feed?section=top-news&limit=20" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/news:cnbc/feed?section=top-news&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:cnbc/feed?section=top-news&limit=20", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "ok": true, "count": 20, "items": [ { "link": "https://www.cnbc.com/2026/08/20/ai-data-center-election-backlash.html", "title": "AI data center outrage is showing up everywhere from ads to elections", "pubDate": "Thu, 20 Aug 2026 15:56:12 GMT", "summary": "With less than three months until the midterm elections, opposition to AI data centers is becoming a bipartisan rallying cry in a growing number of states.", "sponsored": false }, { "link": "https://www.cnbc.com/2026/08/21/chinese-humanoid-robots-face-challenge-of-their-own-capabilities.html", "title": "Chinese humanoid robots' biggest obstacle: humans are still (mostly) better", "pubDate": "Fri, 21 Aug 2026 01:56:01 GMT", "summary": "Humanoid robots still struggle to perform as efficiently as humans in most labor scenarios.", "sponsored": false }, { "link": "https://www.cnbc.com/2026/08/20/us-japan-yen-intervention-bank-of-japan-carry-trade.html", "title": "Japan's historic yen intervention has ‘turbo-charged’ the carry trade", "pubDate": "Fri, 21 Aug 2026 00:00:01 GMT", "summary": "Japan's historic effort to prop up the yen may have had an unintended consequence: giving investors a better opportunity to put the carry trade back on.", "sponsored": false }, { "link": "https://www.cnbc.com/2026/08/20/bessent-warsh-fed-bond-market-treasury-yields.html", "title": "Warsh faces Fed independence test as Bessent moves in on central bank's turf", "pubDate": "Thu, 20 Aug 2026 21:53:44 GMT", "summary": "Bessent’s effort to tamp down long-term Treasury yields could force Warsh to clarify how far the Fed should go in coordinating on bonds and the balance sheet.", "sponsored": false }, { "link": "https://www.cnbc.com/2026/08/21/japan-inflation-iran-war-energy.html", "title": "Japan headline inflation rate hits highest this year as energy prices bite", "pubDate": "Fri, 21 Aug 2026 02:13:18 GMT", "summary": "Core inflation — which strips out prices of fresh food but includes energy — was in line with expectations, coming in at 1.8%.", "sponsored": false }, { "link": "https://www.cnbc.com/2026/08/20/walmart-wmt-q2-2027-earnings.html", "title": "Walmart stock tumbles 9% after outlook disappoints Wall Street", "pubDate": "Thu, 20 Aug 2026 20:01:49 GMT", "summary": "Walmart is expected to report its fiscal second-quarter earnings on Thursday, offering a read on the consumer and the K-shaped economy.", "sponsored": false }, { "link": "https://www.cnbc.com/2026/08/20/bessents-efforts-in-the-treasury-market-so-far-havent-worked-heres-what-else-he-can-try.html", "title": "Bessent's efforts in the Treasury market so far haven't worked. Here's what else he can try", "pubDate": "Thu, 20 Aug 2026 21:13:14 GMT", "summary": "Market experts showed skepticism at whether the push would succeed against a bevy of factors working against Treasurys.", "sponsored": false }, { "link": "https://www.cnbc.com/2026/08/20/hyundai-georgia-metaplant-us-production.html", "title": "Hyundai considering U.S. production increase at new Georgia plant, CEO tells CNBC", "pubDate": "Thu, 20 Aug 2026 21:54:59 GMT", "summary": "The potential capacity increase would be part of Hyundai's plan to invest $26 billion in the U.S. through 2028, Hyundai CEO José Muñoz told CNBC.", "sponsored": false } ], "source": "cnbc.com", "section": "top-news" } ``` --- _Generated: 2026-08-21T07:42:29.862Z_