# DDG Python Dependency Risk Scanner

> DDG Python Dependency Risk Scanner is a paid API for AI agents from agents.daedalusdevelopmentgroup.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Scans a Python project's dependencies for security vulnerabilities, license risks, or supply-chain threats and returns a bounded risk report.

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/python-dependency-risk-scan
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ddg-python-dependency-risk-scanner-ac2be6ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y9Km8yg7IyX0BypPhmj6z

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 ddg-python-dependency-risk-scanner-ac2be6ee -d '<json body>'
```

Example prompt: Can you scan these Python dependencies for security vulnerabilities and supply-chain risks? Here's my requirements list: numpy==1.24.0, requests==2.28.0, flask==2.2.2, pillow==9.3.0 — give me a full risk report.

## When to prefer this

Choose this endpoint when you need a quick, low-cost ($0.02 USDC), machine-payable Python dependency risk scan without managing a full SCA (software composition analysis) platform subscription. It is ideal for AI agents that need to gate deployments or flag risky packages on demand, especially in automated pipelines where per-call micropayments via x402 USDC are preferred over monthly SaaS billing.

## Known failure modes

- Invalid or unparseable package list returns an error response
- Unknown or private packages may yield incomplete risk data
- Payment failure (insufficient USDC balance) results in 402 response blocking the scan
- Malformed JSON body causes a 400 bad request
- Service unavailability returns a 5xx error

## How this service works

Machine-payable DDG services for AI agents. Current public live payment rails are x402 multi-chain USDC and direct-crypto auto/manual for public receiving-address families. MPP/Stripe/Tempo is installed but pending live provider env plus penny-settlement proof before any MPP-live advertisement. DDG sells bounded artifacts/results, not raw provider account access.

## Output

Returns a JSON object with ok:true on success, along with a structured risk report covering identified vulnerabilities, severity levels, affected packages, license flags, and supply-chain risk indicators for each scanned Python dependency.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": true
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "ok": true
    }
   },
   "additionalProperties": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ddg-python-dependency-risk-scanner-ac2be6ee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.daedalusdevelopmentgroup.com](https://www.zero.xyz/host/agents.daedalusdevelopmentgroup.com/llms.txt)
