# DDG Agent-Payable Services – Distribution Pack

> DDG Agent-Payable Services – Distribution Pack 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).

Delivers bounded DDG service artifacts/results to AI agents via machine-payable HTTP POST, priced at $0.02 USDC per call over x402 multi-chain payment rails.

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/agent-service-distribution-pack
- 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-agent-payable-services-distribution-pack-ecc1548e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eFmLnY-6erhaEtLJCcbuG

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-agent-payable-services-distribution-pack-ecc1548e -d '<json body>'
```

Example prompt: Call the DDG agent service distribution pack and pay with 0.02 USDC over x402 multi-chain to retrieve the bounded service artifact — send a JSON POST body with the service request details I need.

## When to prefer this

Choose this endpoint when an AI agent needs to autonomously purchase and receive a bounded DDG service result using x402 micro-payments in USDC at $0.02 per call, without needing raw access to an underlying provider account. Prefer it over alternatives when operating in a crypto-native, agent-payable workflow where human-in-the-loop payment approval is undesirable.

## Known failure modes

- Payment not settled or x402 handshake fails — endpoint returns 402 Payment Required
- Malformed request body missing required fields (type, method, bodyType, body) — returns 400 Bad Request
- Unsupported HTTP method enum value — schema validation error
- Live payment rails temporarily unavailable — service may reject or queue the request
- MPP/Stripe/Tempo rails not yet live — only x402 and direct-crypto payments accepted

## 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 object with an `ok: true` status plus the bounded service artifact or result payload DDG has prepared for the requesting agent; no raw provider account access is granted, only the scoped output.

## 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-agent-payable-services-distribution-pack-ecc1548e/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)
