anthropic.com APIwww.anthropic.com ↗
Fetch announcements and full article content from Anthropic's Claude Fable product page, including model availability status and regulatory updates.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/7ca08048-7536-44fd-b5e9-fce06661ddf9/get_announcements' \ -H 'X-API-Key: $PARSE_API_KEY'
Get all announcements from the Claude Fable product page, including the current availability status. Returns a list of announcements with titles, dates, labels, summaries, and links to full articles.
No input parameters required.
{
"type": "object",
"fields": {
"announcements": "array of announcement objects with title, date, label, summary, and url",
"availability_status": "string describing the current availability of Claude Fable 5"
},
"sample": {
"announcements": [
{
"url": "https://www.anthropic.com/news/fable-mythos-access",
"date": "Jun 12, 2026",
"label": "Update",
"title": "Claude Fable 5 access unavailable",
"summary": "We apologize for this disruption to our customers and are working to restore access as soon as possible."
},
{
"url": "https://www.anthropic.com/news/claude-fable-5-mythos-5",
"date": "Jun 9, 2026",
"label": null,
"title": "Claude Fable 5",
"summary": "Claude Fable 5 introduces our 5th model generation for your most ambitious work. Tackle days-long, complex, and asynchronous tasks previous models couldn’t sustain."
}
],
"availability_status": "Claude Fable 5 is currently unavailable.Learn more."
}
}About the anthropic.com API
The Anthropic Claude Fable API provides 2 endpoints for extracting structured data from Anthropic's Claude Fable product page. The get_announcements endpoint returns a list of announcement objects — each with title, date, label, summary, and URL — alongside a string describing the current availability status of Claude Fable 5. The get_article endpoint retrieves full article content broken into typed content blocks.
Announcements Feed
The get_announcements endpoint takes no inputs and returns two top-level fields: announcements and availability_status. Each object in the announcements array includes a title, date, label (a category tag such as a product or policy designation), summary, and url pointing to the full article. The availability_status field is a plain string summarizing the current access state of Claude Fable 5 as presented on the product page — useful for monitoring whether the model is publicly available, restricted, or subject to a government directive.
Full Article Content
The get_article endpoint accepts a single required parameter, article_path, which can be either a short slug like fable-mythos-access or a full path like /news/fable-mythos-access. It returns the article's url, date, title, and a content array. Each element of content is an object with a type field — one of p, li, h2, or h3 — and a text field carrying the actual content. This structure lets you walk the article programmatically without parsing HTML or stripping markup.
Coverage and Scope
Both endpoints are scoped to the Anthropic Claude Fable product page at anthropic.com/claude/fable and its linked news articles. The data reflects what Anthropic publishes on that page: product announcements, model status updates, and any linked editorial or regulatory content. The label field on announcement objects can be used to distinguish categories of updates, such as product releases versus policy or government-related notices.
- Monitor the
availability_statusfield to detect when Claude Fable 5 access changes or is restricted - Track new announcements by polling
get_announcementsand diffing the returneddateandtitlefields - Retrieve full article text via
get_articleto feed a newsletter or internal knowledge base - Use announcement
labelfields to filter policy or regulatory notices from product release updates - Extract structured article
contentblocks to index Anthropic news in a search or alerting system - Aggregate announcement
summaryfields to build a changelog of Claude Fable model updates
| 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 Anthropic provide an official developer API for this kind of content?+
What does the `availability_status` field actually contain?+
Can I retrieve articles from other parts of the Anthropic website, not just those linked from the Fable page?+
get_article endpoint can fetch any article by path on the Anthropic news section as long as you supply the correct article_path slug or full path. Discovery of articles is currently tied to what get_announcements surfaces from the Fable product page — there is no endpoint for browsing the broader Anthropic news index. You can fork this API on Parse and revise it to add a news-index endpoint covering a wider set of articles.Does `get_announcements` support filtering by label or date range?+
get_announcements returns all available announcements from the Fable page in a single response. You can filter client-side using the label or date fields on each announcement object. You can fork the API on Parse and revise it to add server-side filtering parameters.How fresh is the announcement data?+
get_announcements reflects the current state of the Anthropic Claude Fable product page at the time of the request. There is no cached snapshot with a fixed TTL exposed in the response — the date fields on individual announcements are publication dates from Anthropic, not retrieval timestamps. If freshness guarantees matter, you should poll the endpoint at your own preferred interval.