# Dependency Risk Audit (GitHub Advisories + CISA KEV + LLM Verdict)

> Dependency Risk Audit (GitHub Advisories + CISA KEV + LLM Verdict) is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Audits up to 12 npm or PyPI packages in one call, combining live GitHub Security Advisories, CISA KEV cross-reference, current registry version, breaking-change tracking, and an LLM ship/no-ship recommendation per package.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/depaudit/check
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dependency-risk-audit-github-advisories-cisa-kev-llm-verdict-98ce14dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qh7VNr4s8l3WtH7Mio_BC

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 dependency-risk-audit-github-advisories-cisa-kev-llm-verdict-98ce14dd
```

Example prompt: Run a full dependency risk audit on these npm packages — express, lodash, axios, and jsonwebtoken — and tell me if any are on the CISA actively-exploited list, have open GitHub Security Advisories, and whether I should ship with them.

## When to prefer this

Use this endpoint when you need a comprehensive, pre-synthesized dependency security audit that combines multiple data sources (GitHub Advisories, CISA KEV, registry metadata) into a single LLM-curated verdict — especially when you want to avoid making 20+ individual lookups yourself. Ideal for CI/CD gate checks, pre-ship audits, or agent workflows that need an actionable go/no-go signal on a short list of packages (up to 12) from npm or PyPI.

## Known failure modes

- More than 12 packages submitted — request rejected or truncated
- Invalid ecosystem value (not 'npm' or 'pypi') — validation error
- Package name not found in registry — finding marked as unknown or skipped
- GitHub Advisory API or CISA KEV source temporarily unavailable — partial results or error response
- Payment not completed (x402) — 402 Payment Required response
- Rate limiting or upstream timeout — 5xx error response

## How this service works

PREMIUM one-call dependency risk audit: pass ?packages=<comma list, max 12>&ecosystem=npm|pypi and get a per-package verdict combining live GitHub Security Advisories, CISA actively-exploited (KEV) cross-reference, current registry version, tracked breaking changes, and an LLM ship/no-ship recommendation. Replaces ~20 lookups + synthesis an agent would otherwise do itself.

## Output

Returns an array of per-package findings (advisory details, CISA KEV flag, current version, breaking changes) plus an LLM-generated ship/no-ship recommendation for each package and an overall verdict string. Also indicates whether the recommendation was generated by LLM or template.

## 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",
     "required": [
      "packages"
     ],
     "properties": {
      "packages": {
       "type": "string"
      },
      "ecosystem": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "findings": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "generatedBy": {
       "enum": [
        "llm",
        "template"
       ],
       "type": "string"
      },
      "overallVerdict": {
       "type": "string"
      },
      "packagesAudited": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dependency-risk-audit-github-advisories-cisa-kev-llm-verdict-98ce14dd/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)
