# DDG Random Artifact Endpoint

> DDG Random Artifact Endpoint is a paid API for AI agents from agents.daedalusdevelopmentgroup.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns a random bounded artifact or result from DDG's machine-payable agent services, billed at $0.001 USDC per call via x402 payment rails.

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/random
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ddg-random-artifact-endpoint-c90b95f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eZuaMoEVeBAa9X1vh7Hgb

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-random-artifact-endpoint-c90b95f8 -d '<json body>'
```

Example prompt: Can you call the DDG random artifact endpoint and bring back whatever result it gives me — it costs a fraction of a cent in USDC per call.

## When to prefer this

Choose this endpoint when you need a low-cost ($0.001 USDC) machine-payable random artifact from DDG via the x402 protocol, especially when your agent stack already supports x402 multi-chain USDC or direct-crypto payment flows. Prefer it over alternatives when you want a fully automated, per-call micropayment model without a subscription or API key setup.

## Known failure modes

- Payment failure: insufficient USDC balance or x402 payment not accepted, resulting in a 402 Payment Required response
- Invalid body type: if bodyType enum value is not one of json/form-data/text, request will be rejected
- Missing required fields: omitting input or output objects causes schema validation failure
- Provider environment not live: some payment rails (MPP/Stripe/Tempo) are pending and will not settle
- Network timeout: service may be unavailable, returning no response or a 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 object with at minimum an 'ok: true' field indicating success, plus any random artifact or bounded result data the DDG service returns for that call.

## 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-random-artifact-endpoint-c90b95f8/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)
