# Changelog State API – HuggingFace Change History

> Changelog State API – HuggingFace Change History is a paid API for AI agents from changelog-state-api.replit.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns detected changelog update history (new releases, version changes, breaking signals, etc.) for the HuggingFace vendor track.

## Facts

- Endpoint: GET https://changelog-state-api.replit.app/api/monitors/huggingface/changes
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/changelog-state-api-huggingface-change-history-9e76bb71
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BZmaAu7k8v_t0z0cg1T9d

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 changelog-state-api-huggingface-change-history-9e76bb71
```

Example prompt: Pull the last 50 detected changelog changes for HuggingFace, filtering only for new_release events since January 1, 2025.

## When to prefer this

Choose this endpoint when you need a historical log of detected changelog changes for HuggingFace specifically — especially when you want to filter by change type (new_release, breaking_signal, etc.) or query changes since a specific point in time. Prefer this over release-listing endpoints when you care about the detection event itself (when a change was noticed) rather than structured release metadata.

## Known failure modes

- Invalid or unrecognized vendor slug returns an error or empty result
- since parameter with malformed datetime format causes a 400 validation error
- limit exceeding 200 returns a validation error
- Payment not attached or insufficient USDC balance causes a 402 Payment Required response
- Vendor not currently tracked returns an empty changes array

## How this service works

Detected changelog update history for one tracked vendor.

## Output

A JSON array of changelog change records for the HuggingFace vendor, each including the detected change type (e.g. new_release, version_changed, breaking_signal), the timestamp when the change was detected, and relevant metadata such as release title or version string. Results are ordered by detection time and can be filtered and paginated.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "slug"
     ],
     "properties": {
      "slug": {
       "type": "string",
       "pattern": "^[a-z0-9][a-z0-9-]*$",
       "maxLength": 64,
       "minLength": 1,
       "description": "Vendor slug, lowercase alphanumeric with dashes."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "type": {
       "enum": [
        "new_release",
        "version_changed",
        "date_changed",
        "title_changed",
        "breaking_signal"
       ],
       "type": "string",
       "description": "Restrict to a single change type."
      },
      "limit": {
       "type": "integer",
       "default": 50,
       "maximum": 200,
       "minimum": 1,
       "description": "Maximum number of change rows to return."
      },
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Only return changes detected at or after this instant."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "enum": [
      "json"
     ],
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "description": "Detected changelog update history (paid)"
  }
 },
 "description": "Call shape for GET /api/monitors/{slug}/changes."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/changelog-state-api-huggingface-change-history-9e76bb71/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from changelog-state-api.replit.app](https://www.zero.xyz/host/changelog-state-api.replit.app/llms.txt)
