# DDG Lead Pack

> DDG Lead Pack 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-15).

Delivers a bounded lead-pack artifact for AI agents via micro-payment using the x402 protocol at $0.01 USDC per call

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/lead-pack
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ddg-lead-pack-fe173348
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kQmi8N9R65iu-SHGRy83h

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-lead-pack-fe173348 -d '<json body>'
```

Example prompt: Can you grab me a lead pack from Daedalus Development Group's agent-payable service — pay the $0.01 USDC fee automatically via x402 and bring back the results?

## When to prefer this

Choose this endpoint when your AI agent needs to autonomously purchase and receive a bounded lead-pack artifact for $0.01 USDC using the x402 micropayment protocol over multi-chain USDC, with no need for a traditional SaaS account or API key — ideal for agent-to-agent commerce workflows where programmatic payment and immediate data delivery are both required.

## Known failure modes

- Payment not settled — x402 payment header missing or invalid USDC amount results in 402 Payment Required
- Malformed request body — missing required 'input' or 'output' fields returns a validation error
- Unsupported HTTP method in body enum — method not in POST/PUT/PATCH causes schema rejection
- Provider environment not live — MPP/Stripe/Tempo rails may not be active; only x402 and direct-crypto confirmed live
- Network or chain congestion — USDC settlement delay may cause timeout or retry requirement

## 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 containing an 'ok: true' status field plus the bounded lead-pack artifact data purchased for the call; the exact lead payload fields are determined by the request body parameters submitted.

## 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-lead-pack-fe173348/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)
