# DDG Agent-Payable Services – AI Agent Buyer Service Bundle

> DDG Agent-Payable Services – AI Agent Buyer Service Bundle 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-15).

Provides machine-payable, bounded artifacts and results to AI agents via x402 USDC micropayments on a per-call basis

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/ai-agent-buyer-service-bundle
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ddg-agent-payable-services-ai-agent-buyer-service-bundle-62a2778c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KH13TIKQ2_6U3jbllmbF0

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-ai-agent-buyer-service-bundle-62a2778c -d '<json body>'
```

Example prompt: Use the DDG agent buyer service bundle to fetch a bounded result — I'll pay the $0.02 USDC per-call fee via x402 multi-chain USDC, send a JSON body POST request, and get the artifact back.

## When to prefer this

Choose this endpoint when you need machine-payable, per-call access to DDG's bounded artifact services and want to settle payments automatically via x402 multi-chain USDC micropayments. It is specifically suited for AI agents that need autonomous payment capabilities without human-in-the-loop authorization per call. Prefer this over raw provider API access when you want pre-packaged, bounded results rather than open-ended account access.

## Known failure modes

- Payment rail not live or pending provider env setup — MPP/Stripe/Tempo may return errors if provider environment is not configured
- Insufficient USDC balance causes x402 payment failure
- Invalid or missing required fields (type, method, bodyType, body) returns schema validation error
- Unsupported method type (not POST/PUT/PATCH) rejected by input schema
- Network or chain settlement failure during USDC transaction
- Service returns ok:false if the requested artifact cannot be fulfilled

## 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' boolean flag indicating success, along with the bounded artifact or service result purchased via the micropayment. The exact shape of the payload depends on the specific DDG sub-service invoked.

## 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-ai-agent-buyer-service-bundle-62a2778c/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)
