# DDG Scheduled Task Execution

> DDG Scheduled Task Execution 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 scheduled HTTP task to DDG's agent-payable infrastructure, executing a bounded POST/PUT/PATCH request at a scheduled time via x402 USDC micropayment

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/scheduled-task
- 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-scheduled-task-execution-8d5a7cc6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_THQRDyr1sheFo1vvx9NYZ

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-scheduled-task-execution-8d5a7cc6 -d '<json body>'
```

Example prompt: Schedule a POST request to run later that sends a JSON body with my order data — pay for it automatically using USDC via x402 rails on DDG's agent-payable service.

## When to prefer this

Choose this endpoint when an AI agent needs to schedule or defer an HTTP task (POST/PUT/PATCH) using micropayment-gated infrastructure with x402 USDC on multi-chain rails. Prefer it over generic cron or webhook services when the agent operates in a crypto-native, machine-payable environment and needs bounded artifact execution rather than raw provider account access.

## Known failure modes

- Payment failure: x402 USDC payment not fulfilled, returns 402 Payment Required
- Invalid input schema: missing required 'input' or 'output' fields returns validation error
- Unsupported HTTP method: only POST, PUT, PATCH are accepted; GET or DELETE will fail
- Invalid body type: only json, form-data, or text are valid bodyType values
- Provider environment not live: MPP/Stripe/Tempo rails may be pending and unavailable
- Network timeout: scheduled task submission may time out under high load

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

Returns a JSON object with an 'ok' boolean indicating whether the scheduled task was accepted and queued successfully. No detailed task output is returned at submission time; the result confirms scheduling acceptance.

## 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-scheduled-task-execution-8d5a7cc6/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)
