# DDG Agent Marketplace Listing Pack

> DDG Agent Marketplace Listing 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).

Returns a bounded marketplace listing pack artifact for AI agents, purchasable via x402 multi-chain USDC micropayment at $0.02 per call.

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/agent-marketplace-listing-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-marketplace-listing-pack-8e20fa7f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qWjsWhHjemBmKCIHgMpyG

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-marketplace-listing-pack-8e20fa7f -d '<json body>'
```

Example prompt: Can you fetch me the DDG agent marketplace listing pack — I want to see what machine-payable services Daedalus Development Group offers, and I'm happy to pay the $0.02 USDC via x402.

## When to prefer this

Choose this endpoint when an AI agent needs to discover or retrieve the full catalog of DDG machine-payable services and is equipped to settle a $0.02 USDC micropayment via the x402 protocol. Prefer this over generic service directories when you specifically want DDG's bounded artifact offerings and need a crypto-native payment rail (multi-chain USDC). Not suitable if you need raw provider account access or if your agent cannot handle x402 payment challenges.

## Known failure modes

- Payment not settled — x402 payment rail fails or USDC not confirmed, returning 402 Payment Required
- Invalid request body — missing required fields (type, method, bodyType, body) returns 400 Bad Request
- Unsupported HTTP method in body — only POST/PUT/PATCH allowed in inner method enum
- Provider environment not live — MPP/Stripe/Tempo pending, so only x402 and direct-crypto rails are active
- Network timeout or upstream service unavailability returns 5xx 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

A JSON response containing a marketplace listing pack artifact (ok: true on success) describing the bounded services and results DDG sells to AI agents, delivered after a successful $0.02 USDC x402 micropayment settlement.

## 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-marketplace-listing-pack-8e20fa7f/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)
