# Strale Release Notes Generator

> Strale Release Notes Generator is a paid API for AI agents from api.strale.io, paid per call via x402, $0.0324/call, status unknown (last checked 2026-09-15).

Generates structured release notes from a list of git commits, optionally scoped to a version tag

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/release-notes-generate
- Price: $0.0324/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-release-notes-generator-759ece92
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XikWjgT7TodLGidRM0fYa

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 strale-release-notes-generator-759ece92
```

Example prompt: Generate release notes for version 2.5.0 from these commits: 'fix: correct null pointer in auth module, feat: add dark mode toggle, chore: update dependencies, feat: support multi-region deployment'.

## When to prefer this

Choose this endpoint when you need to automatically generate human-readable release notes or changelogs directly from raw git commit messages, especially in CI/CD pipelines or release automation workflows. It is well-suited for teams using conventional commit formats and wanting structured, versioned release documentation without manual writing. Prefer it over general-purpose LLM prompting when you need a consistent, auditable output with a cryptographic audit trail per call.

## Known failure modes

- Missing or empty 'commits' query parameter returns a validation error
- Malformed commit strings may result in poorly categorized or incomplete output
- Very large commit lists may exceed input limits
- Non-standard commit message formats (not following conventional commits) may reduce output quality

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

A structured set of release notes derived from the provided commit messages, organized by category (features, fixes, chores, breaking changes, etc.), optionally labeled with the specified version number. The response includes an audit record with cryptographic chain hashing for traceability.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ]
    },
    "queryParams": {
     "type": "object",
     "required": [
      "commits"
     ],
     "properties": {
      "commits": {
       "type": "string"
      },
      "version": {
       "type": "string"
      }
     }
    }
   },
   "required": [
    "type",
    "method"
   ],
   "additionalProperties": false
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-release-notes-generator-759ece92/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
