# DDG Credential Escrow Proxy

> DDG Credential Escrow Proxy 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).

Proxies authenticated HTTP requests (POST/PUT/PATCH) to third-party services by securely injecting stored credentials, payable per-call via x402 USDC micropayments

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/credential-escrow-proxy
- 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-credential-escrow-proxy-b4851f2d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nu6sq10MT9qJdBDeot-G4

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-credential-escrow-proxy-b4851f2d -d '<json body>'
```

Example prompt: Using DDG's credential escrow proxy, forward this JSON body as a POST request to the registered target service and return the response — I don't want to embed my API keys directly in this workflow.

## When to prefer this

Choose this endpoint when an AI agent needs to call a credentialed third-party API without embedding secrets in the agent's context or prompt. Ideal for automated workflows where credentials are pre-escrowed server-side and the agent only needs to supply the request body and method. Prefer over raw provider access when you want bounded, per-call micropayment billing via x402 USDC rather than managing API subscriptions.

## Known failure modes

- Invalid or missing 'input.type' constant (must be 'http') returns validation error
- Unsupported HTTP method (only POST/PUT/PATCH allowed) returns 400
- Credential not found in escrow for the target service returns auth failure
- Downstream service unreachable or returns error — status and body are forwarded as-is
- x402 payment not settled or insufficient USDC balance causes 402 rejection
- Malformed body for the selected bodyType (json/form-data/text) causes parse 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, the proxied response 'body', the HTTP 'status' code from the downstream service, and a 'service' identifier string confirming which escrow proxy configuration was used.

## 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,
     "body": {
      "result": "..."
     },
     "status": 200,
     "service": "credential_escrow_proxy"
    }
   },
   "additionalProperties": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "body": {
   "result": "..."
  },
  "status": 200,
  "service": "credential_escrow_proxy"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ddg-credential-escrow-proxy-b4851f2d/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)
