# DDG MPP Onboarding Path Activation

> DDG MPP Onboarding Path Activation is a paid API for AI agents from agents.daedalusdevelopmentgroup.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Activates or advances the machine-payment-provider onboarding path for DDG agent-payable services via a POST call paid in USDC over x402.

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/mpp-onboarding-path-activation
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ddg-mpp-onboarding-path-activation-374b8d4d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8Gs5sT4_nWl3Qv-j4NgWM

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-mpp-onboarding-path-activation-374b8d4d -d '<json body>'
```

Example prompt: Activate the DDG machine-payment-provider onboarding path so I can start using DDG's agent-payable services — send a JSON POST body to kick off the process.

## When to prefer this

Choose this endpoint when you need to formally activate or advance the MPP onboarding path within the DDG agent-payable ecosystem, particularly when integrating with x402 multi-chain USDC or preparing for Stripe/Tempo payment rails. This is not a general payment or lookup endpoint — it specifically modifies onboarding state for the DDG platform.

## Known failure modes

- Missing required fields (input.type, input.method, input.bodyType, input.body) returns a validation error
- Payment not settled or x402 handshake fails, resulting in 402 Payment Required
- Provider environment not yet live (MPP/Stripe/Tempo pending), which may return an error or no-op
- Malformed JSON body returns 400 Bad Request
- Duplicate activation attempts may return conflict or silently succeed depending on idempotency handling

## 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: true' field confirming that the onboarding path activation request was received and state was modified successfully.

## 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-mpp-onboarding-path-activation-374b8d4d/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)
