# NVD CVE Changes Feed

> NVD CVE Changes 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-15).

Returns newly published CVEs from the NVD since a given timestamp, each scored 1-10 by CVSS base severity, with descriptions and source links.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/cve/changes
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nvd-cve-changes-feed-1dff3b43
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JPbtBw-yfW0RwS6YgHhpZ

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 nvd-cve-changes-feed-1dff3b43
```

Example prompt: Pull all new CVEs from the NVD published since 2025-06-01T00:00:00Z with a CVSS significance score of at least 7, up to 100 results — I want to review the high and critical ones for our security report.

## When to prefer this

Choose this endpoint when you need a structured, scored, pageable feed of newly published NVD CVEs since a specific timestamp, especially when you want to filter to only high/critical severity using min_significance. Prefer over raw NVD API polling when you want a normalized, pre-scored output with direct source links, or when integrating into an automated security monitoring workflow that pays per query.

## Known failure modes

- Missing or malformed 'since' date-time returns validation error
- min_significance or limit outside allowed range (1-10 / 1-500) returns 400
- NVD upstream unavailable causes 502 or stale data
- No CVEs match the filter window — returns empty changes array with count 0
- Payment not provided or insufficient — returns 402 Payment Required

## How this service works

Newly published CVEs from the NVD since a timestamp, scored 1-10 by CVSS base severity, with descriptions and links. Filter with ?min_significance=7 for high/critical only.

## Output

A JSON object containing a count of matched CVEs, a source label, and an array of change objects each with CVE ID (entityId), title, summary, detail object, CVSS-based significance score (1-10), detected-at datetime, effective date, change type, and a primary-source URL linking to the NVD entry for verification.

## 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/nvd-cve-changes-feed-1dff3b43/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)
