Skip to main content
GET
Get the Blitz API changelog
Agents & LLMs: a Markdown version of this page is available by appending .md to the URL, and the full documentation index is at llms.txt.
Cost: no cost
Public endpoint. No API key required — call it without the x-api-key header.
Fetch the Blitz API changelog programmatically. Entries are returned newest-first and cover breaking changes, new features, improvements, fixes, deprecations, and announcements. Use it to surface release notes inside your own tools or to alert your team whenever an endpoint you depend on changes.
Pass days to fetch only recent entries (e.g. days=7 for the last week) and limit to cap how many you get back (default 50). Each entry’s affected_endpoints lists the routes that changed, and type categorizes the impact — one of breaking, feature, improvement, fix, deprecation, or announcement.

Query Parameters

days
integer

Only return entries from the last N days. Omit for the full history.

Example:

7

limit
integer
default:50

Maximum number of entries to return. Defaults to 50.

Example:

50

Response

200 - application/json

Changelog entries, newest-first.

date
string
required

Publish date in UTC (YYYY-MM-DD).

type
enum<string>
required

Impact category of the change.

Available options:
breaking,
feature,
improvement,
fix,
deprecation,
announcement
title
string
required

Short headline for the change.

body
string

Optional Markdown detail.

affected_endpoints
string[]

API routes affected by this change. Omitted or empty for product announcements.

External links related to the entry (docs, migration guide, blog post).

Example: