# AI/ML Framework Releases Feed

> AI/ML Framework Releases Feed is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns new GitHub releases from a curated set of AI/ML framework and tooling projects since a given timestamp, including version, release notes, and a breaking-change significance score.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/ai-releases/changes
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ai-ml-framework-releases-feed-b42b5ace
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ottvgGkmG9WxXOoRdTVx7

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 ai-ml-framework-releases-feed-b42b5ace
```

Example prompt: Show me all AI and ML framework releases since 2025-06-01T00:00:00Z with a significance score of at least 7, and limit the results to 50.

## When to prefer this

Use this endpoint when you need a curated, scored feed of AI/ML-specific GitHub releases rather than scraping GitHub directly or using a general changelog service. Ideal for agents that need to detect breaking changes, monitor framework upgrade paths, or surface significant new versions of AI tooling with minimal noise filtering via significance scoring.

## Known failure modes

- Invalid ISO-8601 timestamp in 'since' parameter returns 400 error
- limit out of range (below 1 or above 500) returns validation error
- min_significance out of range (below 1 or above 10) returns validation error
- No releases in the requested window returns empty changes array with count 0
- Payment not provided or insufficient returns 402 Payment Required
- Service unavailable on Railway platform returns 503

## How this service works

New GitHub releases from a curated set of AI/ML framework & tooling projects since a timestamp, with version, notes, and a breaking-change flag.

## Output

A JSON object containing a count of matching releases, a source label, and an array of change objects — each with a type, title, summary, detail object, entityId, sourceUrl linking to the GitHub release, detectedAt timestamp, significance score (1-10), and effectiveDate.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 500,
       "minimum": 1
      },
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Only changes detected after this ISO-8601 instant"
      },
      "min_significance": {
       "type": "integer",
       "maximum": 10,
       "minimum": 1,
       "description": "Keep only changes scored at least this"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "count": {
       "type": "integer"
      },
      "source": {
       "type": "string"
      },
      "changes": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "type": {
          "type": "string"
         },
         "title": {
          "type": "string"
         },
         "detail": {
          "type": "object"
         },
         "summary": {
          "type": "string"
         },
         "entityId": {
          "type": "string"
         },
         "sourceUrl": {
          "type": [
           "string",
           "null"
          ],
          "description": "Primary-source link for verification"
         },
         "detectedAt": {
          "type": "string",
          "format": "date-time"
         },
         "significance": {
          "type": "integer",
          "maximum": 10,
          "minimum": 1
         },
         "effectiveDate": {
          "type": [
           "string",
           "null"
          ]
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ai-ml-framework-releases-feed-b42b5ace/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
