# DDG Research Pack

> DDG Research 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-13).

Returns a bounded research artifact or result set for a given query, paid per-call via x402 USDC micropayment

## Facts

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

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-research-pack-dce6d666 -d '<json body>'
```

Example prompt: Can you pull a research pack on the current state of solid-state battery commercialization — I want a compiled summary of key players, recent developments, and market outlook?

## When to prefer this

Choose this endpoint when you need a single bounded research artifact on a topic and want to pay per-call with USDC via x402 micropayment without committing to a subscription or managing raw provider API credentials. Best for AI agents that need lightweight, disposable research lookups at $0.01 per call.

## Known failure modes

- Payment not received or x402 handshake fails — endpoint returns 402 Payment Required
- Malformed POST body missing required fields — returns 400 Bad Request
- Topic or query out of scope for available research sources — may return empty or partial result
- Provider environment not live for certain payment rails (MPP/Stripe/Tempo) — fallback to x402 or direct crypto only
- Rate limiting or service unavailability — 503 or timeout

## 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 response envelope) containing compiled research results on the requested topic — curated findings, summaries, or structured data as determined by DDG's research pipeline, delivered in a single pay-per-call response.

## 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-research-pack-dce6d666/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)
