# Vuln Surface Scan

> Vuln Surface Scan is a paid API for AI agents from k2so.wrong.systems, paid per call via x402, $0.1/call, status down (last checked 2026-09-15).

Scans a public domain using Nuclei (OSS) to identify exposed vulnerabilities and returns a prioritized severity report with findings, top matches, and an actionable verdict.

## Facts

- Endpoint: GET https://k2so.wrong.systems/api/services/vuln-surface-scan
- Price: $0.1/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vuln-surface-scan-1e6effd6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aoR6j1Updq0CBtjotvZv1

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 vuln-surface-scan-1e6effd6
```

Example prompt: Can you run a nuclei vulnerability surface scan on example.com and give me a prioritized report of any exposed security issues, including severity levels and what I should act on first?

## When to prefer this

Choose this endpoint when you need a fast, on-demand, automated vulnerability surface scan of a public domain using the Nuclei OSS scanner without setting up your own infrastructure. Ideal for agents performing security assessments, pre-launch checks, or third-party vendor reviews that need a structured, machine-readable severity report they can act on directly. Not suitable for internal/private hosts, authenticated deep-scan penetration testing, or continuous monitoring workloads.

## Known failure modes

- Invalid or non-public domain returns an error or empty findings
- Domain unreachable or rate-limited results in scan failure
- Only one scan job runs at a time — concurrent requests may be queued or rejected
- Memory cap exceeded for very large or complex targets may cause job termination
- Payment not processed or insufficient USDC balance returns 402 with no results

## How this service works

Scan a public domain with nuclei (OSS) for exposed vulnerabilities and get a prioritized report: findings by severity, top matches, and a verdict an agent can act on. Runs as a governed on-demand docker job (one at a time, memory-capped).

## Output

Returns a JSON object with: a boolean success flag, payment confirmation, a numeric risk score, a natural-language summary verdict, a confidence level, an evidence object with detailed findings, an array of identified risk factors, an array of strengths, and an ISO-8601 timestamp of when the report was generated.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "meta": {
       "enum": [
        "0",
        "1"
       ],
       "type": "string",
       "description": "Set to 1 for free metadata JSON (no payment required)"
      },
      "domain": {
       "type": "string",
       "description": "Composite input parameter"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "title": "Vuln Surface Scan paid response",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "ok",
      "paid",
      "service",
      "provider",
      "result"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "paid": {
       "type": "boolean"
      },
      "result": {
       "type": "object",
       "required": [
        "ok",
        "service"
       ],
       "properties": {
        "ok": {
         "type": "boolean",
         "description": "Handler success"
        },
        "score": {
         "type": "number"
        },
        "service": {
         "type": "string",
         "description": "Service slug"
        },
        "summary": {
         "type": "string"
        },
        "evidence": {
         "type": "object"
        },
        "strengths": {
         "type": "array",
         "items": {
          "type": "string"
         }
        },
        "confidence": {
         "type": "string"
        },
        "generatedAt": {
         "type": "string",
         "description": "ISO-8601 timestamp"
        },
        "riskFactors": {
         "type": "array",
         "items": {
          "type": "string"
         }
        }
       }
      },
      "payment": {
       "type": "object",
       "properties": {
        "code": {
         "type": "string"
        },
        "payer": {
         "type": "string"
        },
        "detail": {
         "type": "string"
        },
        "selfPay": {
         "t
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "paid": true,
  "result": {
   "ok": true,
   "service": "vuln-surface-scan"
  },
  "service": "vuln-surface-scan",
  "provider": "K-2SO"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vuln-surface-scan-1e6effd6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from k2so.wrong.systems](https://www.zero.xyz/host/k2so.wrong.systems/llms.txt)
