Discover/CNN API
live

CNN APIedition.cnn.com

Retrieve CNN article metadata — headline, dek, authors, section, publish timestamps, and lead paragraph — from any cnn.com URL via a single API endpoint.

Endpoint health
verified 3h ago
get_article_summary
1/1 passing latest checkself-healing
Endpoints
1
Updated
3h ago

What is the CNN API?

The CNN Article Summary API exposes 8 structured fields per article through a single get_article_summary endpoint: headline, one-sentence dek, author array, section slug, published and modified ISO 8601 timestamps, lead paragraph, and the canonical URL. Pass any cnn.com or edition.cnn.com article URL and get back structured metadata without parsing HTML yourself.

This call costs10 credits / call— charged only on success
Try it
Full URL of a CNN article, on cnn.com or any of its subdomains (e.g. edition.cnn.com).
api.parse.bot/scraper/063e22b1-66ee-4cb0-b951-f91cc2cfedcc/<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/063e22b1-66ee-4cb0-b951-f91cc2cfedcc/get_article_summary?url=https%3A%2F%2Fedition.cnn.com%2F2026%2F09%2F18%2Fpolitics%2Fus-military-ai-false-intelligence-china-ship' \
  -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 edition-cnn-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.

"""Walkthrough: CNN Article Summary API — fetch and inspect article metadata."""
from parse_apis.edition_cnn_com_api import CnnArticles, ArticleNotFound

client = CnnArticles()

# Fetch summary metadata for a CNN article by its full URL.
try:
    article = client.articles.get(
        url="https://edition.cnn.com/2026/09/18/politics/us-military-ai-false-intelligence-china-ship"
    )
except ArticleNotFound:
    print("Article not found at that URL.")
else:
    print(article.title)
    print("By:", ", ".join(article.authors))
    print("Section:", article.section)
    print("Published:", article.published_at)
    print("Summary:", article.summary)
    if article.lead_paragraph:
        print("Lead:", article.lead_paragraph[:120])

print("exercised: articles.get")
All endpoints · 1 totalmissing one? ·

Fetches one CNN article page and returns its summary metadata: headline, the site's own one-sentence summary (dek), author names, section slug, published/modified timestamps (ISO 8601 UTC), and the first body paragraph. One page request per call. Returns a not-found error when the site answers 404 for the URL; URLs not on cnn.com are rejected before any request. lead_paragraph, section, and modified_at can be null when the page does not carry them.

Input
ParamTypeDescription
urlrequiredstringFull URL of a CNN article, on cnn.com or any of its subdomains (e.g. edition.cnn.com).
Response
{
  "type": "object",
  "fields": {
    "url": "the article URL as supplied",
    "title": "article headline",
    "authors": "array of author display names",
    "section": "section slug such as politics; null when absent",
    "summary": "the site's one-sentence article summary (dek)",
    "modified_at": "ISO 8601 UTC last-modified timestamp; null when absent",
    "published_at": "ISO 8601 UTC publish timestamp",
    "lead_paragraph": "first paragraph of the article body; null when absent"
  },
  "sample": {
    "data": {
      "url": "https://edition.cnn.com/2026/09/18/politics/us-military-ai-false-intelligence-china-ship",
      "title": "Exclusive: US military had close call after using AI for false intelligence report, sources say",
      "authors": [
        "Katie Bo Lillis",
        "Zachary Cohen"
      ],
      "section": "politics",
      "summary": "The episode shows the risks of using this new, relatively poorly understood technology in the middle of the Iran war",
      "modified_at": "2026-09-18T16:55:50.899Z",
      "published_at": "2026-09-18T16:55:50.899Z",
      "lead_paragraph": "The intelligence report, circulated across the US military this spring in the midst of the war with Iran, immediately set off alarm bells: A Chinese ship in the Middle East was transporting components of a nuclear weapons program."
    },
    "status": "success"
  }
}

About the CNN API

What the API returns

The get_article_summary endpoint accepts a single required parameter — url, a full CNN article URL on any subdomain including edition.cnn.com — and returns a flat JSON object. The title field contains the article headline as published. The summary field is CNN's own editorial dek: the one-sentence description editors write to accompany the headline. The authors field is an array of display-name strings, so bylines with multiple contributors are preserved as separate elements.

Timestamps and section data

published_at is always present and formatted as ISO 8601 UTC. modified_at follows the same format but may be null if CNN has not recorded a modification date for that article. The section field returns CNN's internal section slug — for example politics, business, or health — and is null when the article URL does not include a recognizable section. These two fields together make it straightforward to filter a corpus by recency or topic area.

Lead paragraph and coverage scope

The lead_paragraph field returns the first body paragraph of the article text, which typically contains the news lede. It may be null for articles with non-standard body structures such as live blogs or video-primary pages. The endpoint returns a not-found error when the supplied URL resolves to a page that does not exist or is no longer accessible. Only one article is fetched per API call; there is no batch mode in the current implementation.

Reliability & maintenanceVerified

The CNN API is a managed, monitored endpoint for edition.cnn.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when edition.cnn.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 edition.cnn.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
3h ago
Latest check
1/1 endpoint 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
  • Aggregate CNN political coverage by monitoring section slug and published_at for a specific beat
  • Build a news briefing tool that surfaces title and summary (dek) for quick scanning without full article text
  • Detect article corrections or updates by comparing published_at against modified_at over time
  • Populate author attribution metadata in a media monitoring dashboard using the authors array
  • Feed the lead_paragraph into an NLP pipeline for entity extraction or topic classification
  • Track when specific CNN articles are first published by polling published_at on known URL patterns
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does CNN have an official developer API?+
CNN does not publish a public developer API for article content. There is no documented endpoint or API key program available on cnn.com as of mid-2025.
What does the `summary` field contain — is it machine-generated or editorial?+
The summary field returns the article dek, which is the short one-sentence description written by CNN's editors and displayed on the article page alongside the headline. It is editorial copy, not an AI-generated or extracted summary.
Does the API return the full article body text?+
No. The API returns only the lead_paragraph — the first body paragraph. Full article body text, inline media, pull quotes, and related links are not included in the response. You can fork this API on Parse and revise it to add full-body extraction as an additional endpoint.
Are CNN live blogs or video-only articles supported?+
Partially. The endpoint will return headline, authors, timestamps, and section for most article types, but lead_paragraph may be null for live blogs, video-primary pages, and other non-standard formats where a conventional text lede is absent.
Can I retrieve a list of recent articles by section rather than fetching one URL at a time?+
Not currently. The API covers individual article lookup via a known URL; there is no section feed, search, or index endpoint. You can fork this API on Parse and revise it to add a section-feed endpoint that returns multiple article URLs and their metadata.
Page content last updated . Spec covers 1 endpoint from edition.cnn.com.
Related APIs in News MediaSee all →
apnews.com API
Search for news articles from Associated Press on any topic and retrieve complete article details including headlines, summaries, and content with easy pagination. Stay informed with current news stories by finding and reading articles on subjects that matter to you.
reuters.com API
Access data from reuters.com.
nytimes.com API
Retrieve the latest news articles from The New York Times organized by topic sections like politics, business, technology, and more. Stay informed with current stories from one of the world's leading news sources without manually browsing their website.
limon.kg API
Access data from limon.kg.
bcg.com API
Retrieve article content from BCG.com publications including titles, authors, publish dates, body text, and embedded images to access their latest insights and research. Get direct access to complete articles with all their components organized in a single request.
sina.com API
Stay informed with real-time news from Sina.com.cn by retrieving article feeds organized by category and module, complete with titles, full content, and publication timestamps. Access comprehensive article details whenever you need to dive deeper into specific stories.
sciencedirect.com API
Access peer-reviewed scientific articles with complete metadata including titles, author information, abstracts, and direct PDF links from ScienceDirect's research database. Quickly retrieve bibliographic details and full-text documents to streamline your academic research and literature review process.
news.google.com API
Access data from news.google.com.