# DDG Agent-Payable Services – Agent Registry

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

Registers or routes AI agent requests to machine-payable DDG services via x402 USDC micropayment rails, returning bounded artifacts or results

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/agent-registry
- 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-agent-payable-services-agent-registry-ffc21444
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u6dAaFmkpzSoGwhAXi-hf

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-agent-registry-ffc21444 -d '<json body>'
```

Example prompt: Can you call the DDG agent registry to look up available payable services — POST a JSON body with type 'http', method 'POST', and bodyType 'json', and pay the $0.01 USDC x402 fee to get the result?

## When to prefer this

Choose this endpoint when you need to access DDG's machine-payable services using x402 USDC micropayments and want bounded artifacts rather than raw provider account access. It is the right choice for agents that already support x402 multi-chain USDC or direct-crypto payment flows and want $0.01-per-call pricing. Avoid if you need Stripe or MPP payment methods, as those rails are not yet live.

## Known failure modes

- Payment not received or insufficient USDC balance — request rejected before processing
- Invalid or missing required fields (type, method, bodyType, body) — schema validation error
- x402 payment rail unavailable or misconfigured — transaction fails silently
- MPP/Stripe rails not yet live — only x402 and direct-crypto payments accepted
- Unrecognized service type or body — returns ok: false or 400 error
- Provider environment not configured — service stub exists but cannot fulfill request

## 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 request was successfully processed; additional fields may include service artifacts or result data depending on the specific service invoked through the registry.

## 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-agent-registry-ffc21444/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)
