# SameDayDesk Deep Audit

> SameDayDesk Deep Audit is a paid API for AI agents from agents.samedaydesk.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Runs a full AI-search-readiness audit on any public domain: firmographics, tech stack, contacts, DNS/email infra, a 0-100 AI-readiness score, structured-data gap analysis, and a paste-ready JSON-LD fix list, all bundled in one call.

## Facts

- Endpoint: GET https://agents.samedaydesk.com/deep-audit
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/samedaydesk-deep-audit-a923820b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6E-YmCVurq7wLzNihhAkf

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 samedaydesk-deep-audit-a923820b
```

Example prompt: Can you run a full AI-search-readiness audit on acmecoffee.com — I want to see their readiness score, any structured-data gaps, and the paste-ready JSON-LD fixes I should make? They're a coffee shop in Austin.

## When to prefer this

Choose this endpoint when you need a single-call, all-in-one AI search readiness assessment for a public domain — combining firmographics, tech stack, DNS/email infra, contact data, a scored AI-readiness grade, and a paste-ready JSON-LD fix list. Prefer it over separate enrichment or schema-forge endpoints when you want the full bundled 'deep tier' in one request rather than making multiple calls. Ideal for agency workflows auditing client sites, competitive analysis, or pre-launch structured-data checks.

## Known failure modes

- Invalid or non-existent domain returns an error or empty result
- Private/intranet domains not reachable from public internet return no data
- Rate limiting or payment failure (x402) prevents the call from completing
- Domains with heavy bot-blocking may return incomplete tech stack or content data
- Malformed domain strings (missing TLD, spaces) cause input validation errors

## How this service works

Domain -> one complete AI-search-readiness audit (firmographics + tech + contact + DNS/email infra + a 0-100 AI-readiness score + a structured-data gap analysis with a paste-ready JSON-LD fix list + a combined letter grade). The bundled deep tier = enrich + schemaforge in one call. Public data only; no auth, no API keys, no subscription.

## Output

Returns a comprehensive audit object including: firmographic data, detected tech stack, contact info, DNS/email infrastructure details, a 0-100 AI-readiness score with a letter grade, a structured-data gap analysis identifying missing or malformed schema.org markup, and a paste-ready JSON-LD block with all recommended fixes applied.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "domain"
     ],
     "properties": {
      "city": {
       "type": "string",
       "description": "Optional city used to tune local-business structured data."
      },
      "domain": {
       "type": "string",
       "description": "A public domain or URL, for example stripe.com."
      },
      "vertical": {
       "type": "string",
       "description": "Optional business vertical used to tune the structured-data gap analysis."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "ok",
      "product",
      "domain",
      "summary",
      "components"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "domain": {
       "type": "string"
      },
      "product": {
       "type": "string",
       "const": "deep-audit"
      },
      "summary": {
       "type": "object"
      },
      "identity": {
       "type": [
        "object",
        "null"
       ]
      },
      "components": {
       "type": "object"
      },
      "structuredData": {
       "type": [
        "object",
        "null"
       ]
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "domain": "stripe.com",
  "product": "deep-audit",
  "summary": {
   "grade": "B (78/100)",
   "hasJsonLd": true,
   "aiReadinessScore": 84,
   "structuredDataGaps": 2
  },
  "components": {
   "enrich": true,
   "schemaforge": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/samedaydesk-deep-audit-a923820b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.samedaydesk.com](https://www.zero.xyz/host/agents.samedaydesk.com/llms.txt)
