# DDG Artifact Order Endpoint

> DDG Artifact Order Endpoint 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 a machine-payable order for a bounded AI-generated artifact or result via the DDG agent services platform, settled with x402 multi-chain USDC at $0.01 per call.

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/model/artifact-order
- 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-artifact-order-endpoint-c0d314ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_k418KypOaaK6pM--J3MGq

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-artifact-order-endpoint-c0d314ef -d '<json body>'
```

Example prompt: Place a DDG artifact order for me — submit a JSON POST body with my request payload and settle the $0.01 USDC charge via the x402 multi-chain payment rail.

## When to prefer this

Choose this endpoint when an AI agent needs to purchase a bounded, well-defined artifact or generated result from DDG using on-chain USDC micropayments via the x402 protocol at $0.01 per call. Prefer this over raw provider API access when you want a managed, agent-optimized delivery of a specific output without handling underlying provider credentials. Best suited for agents with x402-compatible wallets making automated, low-cost per-call purchases.

## Known failure modes

- Payment not settled — x402 payment rail fails or USDC balance insufficient, order rejected
- Invalid input type — 'type' field must be 'http', otherwise schema validation fails
- Unsupported HTTP method — only POST, PUT, PATCH allowed in input.method
- Malformed body type — bodyType must be one of json, form-data, or text
- Provider environment not live — MPP/Stripe/Tempo rails not yet active, only x402 and direct-crypto accepted
- Missing required fields — input or output objects incomplete, returns validation 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 an 'ok' boolean indicating successful order placement and artifact delivery, along with the bounded artifact or result data purchased.

## 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-artifact-order-endpoint-c0d314ef/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)
