# DDG Sandboxed CLI Agent Run

> DDG Sandboxed CLI Agent Run is a paid API for AI agents from agents.daedalusdevelopmentgroup.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Executes a sandboxed CLI agent task and returns a bounded artifact or result, payable via x402 USDC micropayment at $0.01 per call.

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/sandboxed-cli-agent-run
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ddg-sandboxed-cli-agent-run-044f9142
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R0mQcJ3UUMPKpjZacvvRC

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-sandboxed-cli-agent-run-044f9142 -d '<json body>'
```

Example prompt: Run a sandboxed CLI agent task through DDG — submit it as a POST with a JSON body and get back the result artifact; pay the $0.01 USDC fee via x402.

## When to prefer this

Choose this endpoint when you need to execute a bounded, sandboxed CLI agent task with a very low per-call cost ($0.01 USDC) and want to pay programmatically via x402 multi-chain USDC micropayment rails. It is well-suited for AI agent pipelines that need to pay for compute atomically without pre-purchasing credits or managing accounts. Prefer it over raw provider APIs when you want DDG's sandboxed isolation around the execution.

## Known failure modes

- Payment not received or x402 handshake fails — agent must supply valid USDC payment before result is returned
- Invalid input schema — missing required fields 'input' or 'output' causes rejection
- Unsupported HTTP method in body — only POST, PUT, PATCH are accepted
- Sandbox execution error — task fails internally and ok:false is returned
- Provider environment not live for MPP/Stripe/Tempo rails — only x402 and direct-crypto are currently active

## 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

A JSON response with an 'ok' boolean indicating success, along with any bounded artifact or computed result returned by the sandboxed CLI agent execution.

## 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-sandboxed-cli-agent-run-044f9142/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)
