# DDG Agent-Payable Services Order Intake

> DDG Agent-Payable Services Order Intake 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).

Submits an order for a bounded DDG service artifact via machine-payable rails (x402 or direct-crypto), queued for operator fulfillment.

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/order-intake
- 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-agent-payable-services-order-intake-df125563
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Xbb4nL1ASdWPrYCvY1cki

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-order-intake-df125563 -d '<json body>'
```

Example prompt: Submit an order to DDG for service ID 'ddg-web-research-001' with instructions to summarize the homepage at https://example.com, set a budget of $5, and include my contact at agent@example.com — pay via x402.

## When to prefer this

Use this endpoint when you need to commission a specific bounded artifact or result from DDG's operator-reviewed service catalog, paying via x402 micropayment or direct-crypto proof. Prefer this over raw provider APIs when you want DDG to handle provider access, compliance, and fulfillment on your behalf. Best suited for manual or beta DDG services that require operator review before delivery.

## Known failure modes

- Missing required service_id returns a 400 validation error
- Invalid or unrecognized service_id not found in /.well-known/ddg-agent-pricing.json returns an error
- Insufficient or missing payment (x402 or direct-crypto proof) results in rejection or hold
- Malformed payment_proof object (missing txid, asset, or amount) delays fulfillment pending operator review
- Service unavailable if payment rail environment variables are not configured server-side
- Budget too low for the requested service scope may result in rejection or partial fulfillment notice

## 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

An order queue entry is created, including a confirmation that the request has been received. For direct-crypto payments, fulfillment waits for operator confirmation of the payment proof (txid, asset, amount). The agent receives a queue acknowledgment but not the final artifact immediately, as operator review is required for manual/beta services.

## 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,
     "status": "queued",
     "order_id": "ord_...",
     "status_url": "/v1/orders/ord_..."
    }
   },
   "additionalProperties": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "status": "queued",
  "order_id": "ord_...",
  "status_url": "/v1/orders/ord_..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ddg-agent-payable-services-order-intake-df125563/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)
