# MilliAPI Verify Site Repairs

> MilliAPI Verify Site Repairs is a paid API for AI agents from milliapi.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Compares a website's current state against a prior audit baseline to verify which SEO/AI-readiness recommendations have been resolved, remain, or were newly introduced.

## Facts

- Endpoint: POST https://milliapi.com/api/verify-site-repairs
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/milliapi-verify-site-repairs-7c95833d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aI1hlfnp5XnBfEquyCVCy

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 milliapi-verify-site-repairs-7c95833d -d '<json body>'
```

Example prompt: Can you check whether the fixes I made to https://mysite.example.com have resolved the audit recommendations — use my baseline token 'tok_abc123' to compare against my last scan?

## When to prefer this

Use this endpoint when you have already run a prior paid audit (and hold a baselineToken) and want to measure the delta — which issues were fixed, which remain, and whether new ones appeared. It is purpose-built for iterative repair verification workflows rather than first-time discovery scans. Prefer it over a full fresh audit when you need a structured diff and a score delta rather than a complete new report.

## Known failure modes

- Invalid or expired baselineToken returns an error — tokens must come from a prior paid audit call
- Malformed or unreachable URL causes a fetch error or timeout
- Unsupported HTTP method (only GET, HEAD, DELETE accepted) results in validation error
- Payment failure via x402 prevents the call from completing
- Network issues reaching the target site may cause incomplete verification results

## How this service works

Tiny machine-readable APIs that AI agents can discover, pay for with x402 USDC on Base, and use instantly. Services start at $0.001 per call.

## Output

Returns a JSON object with a status string (e.g. 'partially_verified'), a numeric scoreDelta indicating improvement or regression, arrays of resolvedRecommendationIds, remainingRecommendationIds, and introducedRecommendationIds relative to the baseline, the product name, and a nextBaselineToken to use for future comparisons.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string",
       "format": "uri"
      },
      "baselineToken": {
       "type": "string",
       "description": "Portable baseline token returned by a prior paid audit."
      }
     },
     "required": [
      "url",
      "baselineToken"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "product": {
       "type": "string"
      },
      "status": {
       "type": "string"
      },
      "scoreDelta": {
       "type": "number"
      },
      "resolvedRecommendationIds": {
       "type": "array"
      },
      "remainingRecommendationIds": {
       "type": "array"
      },
      "introducedRecommendationIds": {
       "type": "array"
      },
      "current": {
       "type": "object"
      },
      "nextBaselineToken": {
       "type": "string"
      }
     },
     "required": [
      "product",
      "status",
      "scoreDelta",
      "resolvedRecommendationIds",
      "remainingRecommendationIds",
      "introducedRecommendationIds",
      "current",
      "nextBaselineToken"
     ]
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "partially_verified",
  "product": "MilliAPI Repair Verification",
  "scoreDelta": 15,
  "resolvedRecommendationIds": [
   "add_canonical",
   "publish_llms_txt"
  ],
  "remainingRecommendationIds": [
   "add_structured_data"
  ],
  "introducedRecommendationIds": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/milliapi-verify-site-repairs-7c95833d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from milliapi.com](https://www.zero.xyz/host/milliapi.com/llms.txt)
