# x402-gateway changelog_git

> x402-gateway changelog_git is a paid API for AI agents from x402.freeq.one, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Generate a formatted changelog from a Git repository's commit history using AI, paying per call via x402 micropayments on Base

## Facts

- Endpoint: POST https://x402.freeq.one/tools/changelog_git
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-gateway-changelog-git-5465ddbd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p4327PVJjyd4fQmX8y9-0

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability x402-gateway-changelog-git-5465ddbd -d '<json body>'
```

Example prompt: Generate a changelog from the git commit history of https://github.com/myorg/myrepo for the last 30 commits, formatted as Markdown with conventional commit groupings.

## When to prefer this

Choose this endpoint when you need to automatically generate a human-readable changelog directly from git commit history without manually curating commits. It is ideal for CI/CD pipelines, release automation, and developer tools that need structured release notes on demand. Prefer it over OpenAPI-based changelog tools when the source of truth is the git log rather than an API spec diff.

## Known failure modes

- Invalid or inaccessible git repository URL — returns error if repo is private or doesn't exist
- No commits found in the specified range — returns empty or minimal changelog
- Payment failure via x402 — call rejected if USDC balance is insufficient on Base
- Rate limiting or upstream git provider throttling
- Ambiguous commit messages that produce low-quality changelog entries

## How this service works

Pay-per-call MCP gateway: 12 tools (markdown, token_price, wallet_portfolio, whale_alerts, cross_chain_balance, changelog_openapi, changelog_git, mermaid, html_to_markdown, qr_generator, og_image_generator, jobs). Per-tool prices on Base via the Coinbase CDP x402 facilitator: markdown=$0.001, token_price=$0.0005, wallet_portfolio=$0.002, whale_alerts=$0.002, cross_chain_balance=$0.002, changelog_openapi=$0.005, changelog_git=$0.005, mermaid=$0.005, html_to_markdown=$0.001, qr_generator=$0.001, og_image_generator=$0.001, jobs=$0.002. MCP flat rate $0.001.

## Output

Returns a structured, human-readable changelog generated from the repository's git commit history — typically formatted as Markdown with commits grouped by type (features, fixes, breaking changes, etc.), suitable for inclusion in a CHANGELOG.md file or release notes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "base_commit": {
   "type": "string",
   "description": "Base commit SHA"
  },
  "target_commit": {
   "type": "string",
   "description": "Head commit SHA (optional, defaults to repo HEAD)"
  },
  "repository_url": {
   "type": "string",
   "description": "Git repo URL (https)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-gateway-changelog-git-5465ddbd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.freeq.one](https://www.zero.xyz/host/x402.freeq.one/llms.txt)
