# Botonomy Schema Audit

> Botonomy Schema Audit is a paid API for AI agents from pay.botonomy.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Audits a URL's JSON-LD structured data and checks its eligibility for Google rich results

## Facts

- Endpoint: GET https://pay.botonomy.ai/v1/schema-audit
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/botonomy-schema-audit-035a9e84
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AqfDNSyGFpgqrd4LU4s-9

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 botonomy-schema-audit-035a9e84
```

Example prompt: Can you audit the structured data on https://www.example.com/products/blue-sneakers and tell me if it qualifies for Google rich results?

## When to prefer this

Use this endpoint when you need to specifically audit JSON-LD structured data and check rich result eligibility for a given URL. Prefer it over generic SEO crawlers when the goal is schema.org compliance and Google rich result readiness rather than general page analysis.

## Known failure modes

- Invalid or non-resolvable URL returns an error
- Target URL is unreachable or returns non-200 HTTP status
- No JSON-LD structured data found on the page
- Malformed query parameter causes bad request
- Payment failure via x402 protocol blocks the request

## How this service works

JSON-LD structured-data audit + rich-result eligibility for one URL.

## Output

Returns a structured audit report of all JSON-LD found on the page, including detected schema types, validation errors or warnings, and a determination of whether the URL is eligible for specific Google rich result features (e.g. Product, Article, FAQ, LocalBusiness).

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "absolute http(s) URL to audit"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/botonomy-schema-audit-035a9e84/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pay.botonomy.ai](https://www.zero.xyz/host/pay.botonomy.ai/llms.txt)
