# apiacre.com Full Website Audit

> apiacre.com Full Website Audit is a paid API for AI agents from apiacre.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Runs a comprehensive website audit combining SEO, security, accessibility, and performance scores with prioritized fixes.

## Facts

- Endpoint: POST https://apiacre.com/v1/web/full-audit
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apiacre-com-full-website-audit-20ad6268
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kEX5B4wLB2lIAcb1siPaK

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 apiacre-com-full-website-audit-20ad6268 -d '<json body>'
```

Example prompt: Can you run a full audit on https://example.com and give me SEO, security, accessibility, and performance scores along with the most important fixes I should make?

## When to prefer this

Choose this endpoint when you need a single comprehensive audit covering all four dimensions (SEO, security, accessibility, and performance) in one call rather than running separate specialized tools. Ideal for pre-launch checks, periodic health monitoring, or competitive analysis where a holistic view with prioritized fixes is more useful than deep single-domain analysis.

## Known failure modes

- Invalid or unreachable URL returns an error indicating the site could not be fetched
- Timeout if the target website is extremely slow to respond
- Private or localhost URLs may be rejected
- Rate limiting if too many audits are requested in a short period

## How this service works

Run a comprehensive website audit combining SEO, security, accessibility, and performance scores with prioritized fixes.

## Output

Returns a structured audit report with individual scores for SEO, security, accessibility, and performance, plus a prioritized list of actionable fixes ranked by impact.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "seo": {
    "score": 90,
    "headings": {
     "h1": 1,
     "h2": 0,
     "h3": 0
    },
    "wordCount": 21,
    "imageCount": 0,
    "imagesMissingAlt": 0
   },
   "url": "https://example.com/",
   "security": {
    "score": 0,
    "missing": [
     {
      "header": "strict-transport-security",
      "purpose": "HSTS"
     }
    ],
    "present": {},
    "cookieFlags": {
     "secure": false,
     "httpOnly": false,
     "sameSite": false
    }
   },
   "performance": {
    "bytes": 559,
    "status": 200,
    "elapsedMs": 44
   },
   "overallScore": 63,
   "accessibility": {
    "score": 100,
    "issues": [],
    "issueCount": 0
   }
  },
  "meta": {
   "cached": false,
   "sources": [],
   "warnings": [],
   "duration_ms": 42,
   "next_actions": []
  },
  "service": "web.full-audit",
  "version": "1",
  "request_id": "018f1f54-7f38-7ba2-8dc3-5f90272d9f1a"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apiacre-com-full-website-audit-20ad6268/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apiacre.com](https://www.zero.xyz/host/apiacre.com/llms.txt)
