# August Site Audit API

> August Site Audit API is a paid API for AI agents from api-v3qhpbwutp.august.services, paid per call via x402, $2/call, status down (last checked 2026-09-15).

Crawls up to 25 pages of a domain and returns a comprehensive site audit including DNS/TLS, SEO metadata, broken links, accessibility issues, and a content summary.

## Facts

- Endpoint: POST https://api-v3qhpbwutp.august.services/v1/site-audit
- Price: $2/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/august-site-audit-api-1f8e759f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xZXmUeVjmyAAOO8ANgYbb

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 august-site-audit-api-1f8e759f -d '<json body>'
```

Example prompt: Can you run a full site audit on acmecorp.com — I want to see broken links, pages missing descriptions, TLS certificate status, and a summary of what the site actually is?

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-dimensional audit of an entire site in a single API call — covering infrastructure (DNS, TLS), SEO (titles, descriptions, headings), accessibility (alt text, viewport), content fingerprinting (SHA-256 hashes), and broken link detection all at once. It is more thorough than a single-page capture or a DNS-only audit. Prefer it over scraping individual pages when the goal is site-wide health assessment or competitive intelligence on a domain's structure and content.

## Known failure modes

- No pages could be retrieved — the service refuses to bill and returns an error indicating the domain was unreachable or blocked
- Domain does not resolve — DNS lookup failure returned
- Sitemap not found and link discovery yields no crawlable pages
- TLS certificate expired or invalid on the target domain, preventing crawl
- Rate limiting or bot-blocking by the target site reduces crawl coverage below expected page count

## How this service works

Full site audit in one call. Crawls up to 25 pages via sitemap or link discovery and returns: DNS, TLS certificate and expiry, robots.txt and security.txt, per-page titles, descriptions, headings, word counts and SHA-256 content hashes, verified broken internal links, missing alt text and viewport tags, plus an evidence-grounded summary of what the site is. Refuses to bill if no pages could be retrieved.

## Output

A JSON object containing: the domain, a natural-language summary of what the site is, infrastructure details (TLS issuer and days until expiry), per-page data (titles, descriptions, headings, word counts, SHA-256 hashes), findings arrays for broken internal links and pages missing descriptions, and the total page count crawled.

## Response schema (JSON Schema)

```json
{
 "example": {
  "domain": "example.com",
  "analysis": {
   "what_it_is": "A documentation site for…"
  },
  "findings": {
   "broken_internal_links": [],
   "pages_missing_description": []
  },
  "pages_crawled": 12,
  "infrastructure": {
   "tls": {
    "issuer": "Google Trust Services",
    "days_until_expiry": 61
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/august-site-audit-api-1f8e759f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api-v3qhpbwutp.august.services](https://www.zero.xyz/host/api-v3qhpbwutp.august.services/llms.txt)
