# DDG Threat Check

> DDG Threat Check is a paid API for AI agents from agents.daedalusdevelopmentgroup.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Performs a threat assessment check on a given HTTP request payload, returning a bounded risk evaluation result.

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/threat-check
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ddg-threat-check-d0b1322b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rKUtXSX0-Pa49KtAzKuKD

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-threat-check-d0b1322b -d '<json body>'
```

Example prompt: Can you run a threat check on this incoming POST payload — it's a JSON body with the fields {"username":"admin","cmd":"rm -rf /"} — I want to know if it's flagged as malicious before I process it.

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call threat assessment on individual HTTP request payloads without managing a full security platform subscription. Ideal for AI agents that need to gate-check user input or inbound webhook data before processing, and that can pay micro-amounts via x402 USDC rails.

## Known failure modes

- Missing required fields (input or output) returns a validation error
- Malformed JSON body causes a 400-level error
- Payment not included or insufficient USDC causes a 402 Payment Required response
- Unsupported HTTP method in the input enum causes rejection
- Service unavailability or provider downtime 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 an 'ok' boolean indicating whether the threat check passed. Additional threat details may be included in the response depending on the assessment.

## 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-threat-check-d0b1322b/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)
