# DevOps & Cloud-Native GitHub Releases Feed

> DevOps & Cloud-Native GitHub 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 DevOps and cloud-native infrastructure 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/devops-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/devops-cloud-native-github-releases-feed-bd07f2ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Bbft7RYPfEZe7h7tmcVo6

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 devops-cloud-native-github-releases-feed-bd07f2ed
```

Example prompt: Pull all new DevOps and cloud-native infrastructure releases detected since 2025-06-01T00:00:00Z, limit to 50 results, and only show me ones with a significance score of at least 7 so I can spot any breaking changes.

## When to prefer this

Choose this endpoint when you need a curated, scored feed of DevOps and cloud-native GitHub releases rather than raw GitHub API polling. It is ideal for change-monitoring workflows, dependency update bots, or compliance checks that need to flag breaking changes in infrastructure tooling. Prefer it over generic GitHub search when you want pre-scored significance and a stable curated project list.

## Known failure modes

- Invalid or missing 'since' parameter returns a 400 error
- min_significance outside 1-10 range returns a validation error
- limit outside 1-500 range returns a validation error
- No releases found in the given window returns an empty changes array with count 0
- Payment not provided or insufficient returns a 402 Payment Required error
- Upstream GitHub API unavailable may cause 503 or stale data

## How this service works

New GitHub releases from a curated set of DevOps / cloud-native infrastructure projects since a timestamp, with version, notes, and a breaking-change flag.

## Output

A JSON object with a count and an array of change items, each containing the project name (entityId), release title, summary/notes, significance score (1-10), a breaking-change indicator, a source URL to the GitHub release, and the detectedAt and effectiveDate timestamps.

## 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/devops-cloud-native-github-releases-feed-bd07f2ed/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)
