# DDG Local Business Demo Pack

> DDG Local Business Demo 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-15).

Returns a bounded demo pack of local business data artifacts for AI agents, paid per-call via x402 USDC micro-payment rails.

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/local-business-demo-pack
- 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-local-business-demo-pack-37c1f8b5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-wGDdK0Oc9z0y7zoKF5ch

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-local-business-demo-pack-37c1f8b5 -d '<json body>'
```

Example prompt: Pull the DDG local business demo pack for my agent — pay the $0.02 USDC fee via x402 and return the bundled local business artifact results.

## When to prefer this

Choose this endpoint when you need a pre-packaged, bounded local business data artifact delivered as a single per-call purchase via x402 USDC micropayments (multi-chain). Prefer it over raw provider API access when you want a finished artifact rather than account-level data, or when your agent stack already handles x402 payment flows and you want the lowest-friction local business data acquisition at $0.02 per call.

## Known failure modes

- Payment not settled — x402 payment challenge not met, returns 402 with payment requirements
- Invalid request body — missing required 'input' or 'output' fields returns a validation error
- Provider environment not live for MPP/Stripe/Tempo rails — only x402 and direct-crypto are active
- Network or upstream timeout — transient failure with no artifact returned
- Malformed JSON body — bodyType mismatch causes parse 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 bounded JSON artifact (ok: true plus demo pack content) containing pre-packaged local business data results. The agent receives a finite, ready-to-use data bundle rather than raw provider account access — scoped to whatever the demo pack defines.

## 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-local-business-demo-pack-37c1f8b5/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)
