# Dart/Flutter Pub Package Updates Digest

> Dart/Flutter Pub 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-written digest summarizing the most consequential Dart/Flutter pub.dev package updates, breaking changes, and upgrade guidance for a given time window.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/pub/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/dart-flutter-pub-package-updates-digest-24282716
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6m1HWMqqDN0pLcV3Spt0F

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 dart-flutter-pub-package-updates-digest-24282716
```

Example prompt: Give me an LLM-written summary of the most important Dart and Flutter pub package updates, breaking changes, and upgrade guidance from the last 30 days.

## When to prefer this

Use this endpoint when an agent or developer needs a curated, human-readable summary of Flutter/Dart pub ecosystem changes — especially for staying current with breaking changes, planning upgrades, or generating a changelog brief. Prefer this over raw pub.dev API queries when you want an interpreted, prioritized narrative rather than raw package data.

## Known failure modes

- No significant changes in window returns sparse or minimal brief
- Payment failure (402) if x402 USDC payment not provided
- Invalid since datetime format returns validation error
- LLM generation failure may fall back to template-based output (generatedBy: template)
- Window too narrow may result in zero basedOnChanges and empty digest

## How this service works

Plain-English digest of the Dart/Flutter pub ecosystem: which tracked packages (http, provider, dio, riverpod, and more) shipped notable or breaking major releases since T, why they matter, and whether to bump your pubspec.yaml.

## Output

A JSON object containing a 'brief' field with a natural-language LLM-generated digest of the most consequential pub.dev package changes, a 'generatedBy' field indicating whether it was LLM- or template-generated, and a 'basedOnChanges' integer indicating how many changes were analyzed to produce the summary.

## 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/dart-flutter-pub-package-updates-digest-24282716/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)
