GET/api/releases
Releases, newest first, filtered by company, product, type, month, topic or words
- companyCompany id, e.g. snowflake, databricks, anthropic
- productProduct id, e.g. claude-apps
- typeRelease type
- monthMonth, YYYY-MM
- tagTopic, e.g. AI agents
- qWords in the title or summary
- limitItems per page, 1 to 200
- offsetItems to skip, for the next page
Shell
curl -s "https://releases.fru.dev/api/releases?company=anthropic&limit=3"Sample response
JSON
{
"releases": [
{
"id": "claude-apps-2026-09-22-claude-opus-5-5-launched-first-model-in-the-claude-5-5-family",
"company": "anthropic",
"product": "claude-apps",
"title": "Claude Opus 5.5 launched, first model in the Claude 5.5 family",
"date": "2026-09-22",
"precision": "day",
"type": "ga",
"summary": "Anthropic launched Claude Opus 5.5, the first model in the Claude 5.5 family. It performs at the level of Claude Fable 5.1 on most work a...",
"tags": [
"LLMs",
"Pricing"
],
"url": "https://support.claude.com/en/articles/12138966-release-notes#h_1ff986cf68",
"origin": "seed",
"verified": true,
"status": "published",
"foundAt": "2026-09-22 20:09:46"
},
{
"id": "claude-platform-2026-09-22-tools-can-now-be-defined-inside-a-mid-conversation-system-message-in-bet",
"company": "anthropic",
"product": "claude-platform",
"title": "Claude API beta lets tools be defined inside mid-conversation system messages",
"date": "2026-09-22",
"precision": "day",
"type": "beta",
"summary": "With the inline-tools-2026-09-15 beta header, a tool_addition block can carry a full tool definition, so agents can add tools, change sch...",
"tags": [
"LLMs",
"MCP"
],
"url": "https://platform.claude.com/docs/en/release-notes/overview#september-22-2026",
"origin": "seed",
"verified": true,
"status": "published",
"foundAt": "2026-09-22 19:52:51"
}
],
"total": 105,
"limit": 3,
"offset": 0,
"next": "/api/releases?company=anthropic&limit=3&offset=3"
}