# DDG Site Audit

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

Performs an AI-driven site audit for a given URL, returning bounded diagnostic results tailored to market and business type

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/site-audit
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ddg-site-audit-9ecf413f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ou7zrrfPi2Y8DHSE5VRnd

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-site-audit-9ecf413f -d '<json body>'
```

Example prompt: Can you run a site audit on https://www.morningbloomcoffee.com — it's a local food and beverage business targeting the US market?

## When to prefer this

Use this endpoint when you need a quick, bounded site audit artifact for a specific URL without requiring raw provider account access — ideal for agents that need actionable SEO and technical diagnostics scoped to a particular market and business vertical, paid per-call via x402 or direct crypto

## Known failure modes

- Invalid or unreachable URL returns an error indicating the site could not be fetched
- Missing required 'url' field returns a 400-level validation error
- Payment not provided or insufficient results in a 402 Payment Required response
- Unsupported market or business_type values may return a validation error or be ignored
- Timeout if the target site is extremely slow to respond

## 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 bounded site audit artifact containing technical findings, SEO issues, and business-context-aware recommendations for the submitted URL, scoped to the specified market and business type

## 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_or_completed",
     "artifact_url": "https://agents.daedalusdevelopmentgroup.com/v1/orders/ord_.../artifact"
    }
   },
   "additionalProperties": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "status": "queued_or_completed",
  "artifact_url": "https://agents.daedalusdevelopmentgroup.com/v1/orders/ord_.../artifact"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ddg-site-audit-9ecf413f/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)
