# NuGet .NET Package Updates Digest

> NuGet .NET Package Updates Digest is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Returns an LLM-generated digest summarizing the most consequential .NET NuGet package updates and breaking changes in a given time window, with upgrade guidance.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/nuget/brief
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nuget-net-package-updates-digest-39e8c50d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_46RYg7GJopuGMILxOOubN

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 nuget-net-package-updates-digest-39e8c50d
```

Example prompt: Give me a digest of the most important .NET NuGet package updates and breaking changes since January 1, 2025, including any upgrade guidance I should know about.

## When to prefer this

Use this endpoint when you need a human-readable, prioritized summary of .NET NuGet ecosystem changes rather than raw package data. Ideal for developer daily briefings, automated change monitoring pipelines, or when you want LLM-curated upgrade guidance rather than a raw package list. Prefer over raw NuGet feeds when actionable narrative and prioritization matter.

## Known failure modes

- No changes found in the specified window — brief may be empty or minimal
- Invalid date-time format for 'since' parameter — likely a 400 error
- Upstream NuGet data source unavailable — digest may be stale or service returns 503
- Payment not processed (x402) — returns 402 Payment Required
- Window too large — may result in slower response or truncated digest

## How this service works

Plain-English digest of the .NET NuGet ecosystem: which tracked packages (Newtonsoft.Json, Serilog, AutoMapper, Polly, and more) shipped notable or breaking major releases since T, why they matter, and whether to bump your .csproj / PackageReference.

## Output

A structured JSON object containing: a 'brief' field with an LLM-written narrative digest of the most consequential NuGet updates and breaking changes in the window, a 'generatedBy' field indicating whether it was produced by an LLM or a template, and a 'basedOnChanges' integer indicating how many changes were analyzed.

## 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": {
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Window start (default: last 30 days)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "brief": {
       "type": "string"
      },
      "generatedBy": {
       "enum": [
        "llm",
        "template"
       ],
       "type": "string"
      },
      "basedOnChanges": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nuget-net-package-updates-digest-39e8c50d/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)
