Fake Changelog

⚡ Generators 🌭🌭 Medium 3,935 calls

The Fake Changelog API generates a complete software changelog for any version string. Sections include "Fixed" (bugs nobody reported), "Added" (features nobody asked for), "Changed" (refactors that did nothing), "Removed" (the dark mode toggle), and "Known Issues" (the bug is now in a different place). Signed by the team.

Try It — No Seriously

Fake Changelog.exe
_ ×
Version string, e.g. "2.4.1"

Parameters

Parameter Type Required Default Description
version string Required Version string, e.g. "2.4.1"

Examples

curl "https://api.stupidapis.com/fake-changelog/generate?version=2.4.1"
import requests

response = requests.get(
    "https://api.stupidapis.com/fake-changelog/generate",
    params={"version": "2.4.1"}
)
print(response.json())
const response = await fetch(
  "https://api.stupidapis.com/fake-changelog/generate?version=2.4.1"
);
const data = await response.json();
console.log(data);

Response Schema

Field Type Description
version string Version string
released string Today's date
fixed string[] Bug fixes
added string[] New features
changed string[] Internal changes
removed string[] Removed things
known_issues string[] Things you should know
signed_by string Always "the team"

Example Response

{
  "version": "2.4.1",
  "released": "2026-05-16",
  "fixed": [
    "Fixed a bug nobody reported but everyone suffered from",
    "The button now works on Tuesdays"
  ],
  "added": [
    "Added telemetry. Trust us.",
    "New onboarding flow that nobody asked for"
  ],
  "changed": [
    "Updated dependencies. We do not know why.",
    "Refactored a function that was working"
  ],
  "removed": [
    "Removed a button."
  ],
  "known_issues": [
    "Dark mode is currently darker than dark",
    "CSV exports may include a small additional column"
  ],
  "signed_by": "the team"
}

MCP Access

This API is available as an MCP tool for AI assistants. Connect your agent to:

POST https://api.stupidapis.com/fake-changelog/mcp
POST https://api.stupidapis.com/mcp

Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.

...
Clippy