# AgentBit Website AI-Readiness Auditor

> AgentBit Website AI-Readiness Auditor is a paid API for AI agents from agentbit.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Audits any public website for AI-agent and AI-crawler readiness, returning a 0–100 score with detailed checks, issues, and recommendations across HTTPS, robots.txt, llms.txt, sitemap, meta tags, schema.org JSON-LD, and security headers.

## Facts

- Endpoint: POST https://agentbit.app/v1/website/agent-readiness
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbit-website-ai-readiness-auditor-a47611e2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Gi3wHxsRdICo2emxttEf4

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 agentbit-website-ai-readiness-auditor-a47611e2 -d '<json body>'
```

Example prompt: Can you audit https://example.com and tell me how AI-agent ready it is — check things like robots.txt bot rules, llms.txt, sitemap, schema.org markup, and security headers, and give me a score with recommendations?

## When to prefer this

Use this endpoint when you need a structured, scored audit of a website's readiness for AI agents and crawlers specifically — covering AI-specific signals like llms.txt, GPTBot/ClaudeBot robots.txt rules, and schema.org JSON-LD — rather than a general SEO audit or uptime check. It is the right choice when the goal is to improve a site's discoverability and usability by AI systems.

## Known failure modes

- URL is unreachable or returns a non-200 status — audit may fail or return partial results
- Private or localhost URLs may not be accessible from the auditor
- Malformed URL input causes validation error
- Timeout if the target website is extremely slow to respond
- Sites behind Cloudflare or bot-detection may block the auditor's requests

## How this service works

Audit any website for AI-agent and AI-crawler readiness: HTTPS, robots.txt and AI bot rules (GPTBot, ClaudeBot, PerplexityBot), llms.txt, sitemap, title/meta, schema.org JSON-LD, security headers. Returns a 0–100 score with failed checks, issues and concrete recommendations.

## Output

A structured JSON response containing a 0–100 AI-readiness score for the submitted URL, along with the pass/fail status for each check (HTTPS, robots.txt AI bot rules for GPTBot/ClaudeBot/PerplexityBot, llms.txt presence, sitemap, title/meta tags, schema.org JSON-LD, security headers), a list of identified issues, and concrete actionable recommendations to improve the score.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://example.com",
  "score": 55,
  "checks": {
   "https": {
    "pass": true
   },
   "llms_txt": {
    "pass": false
   },
   "robots_txt": {
    "pass": false
   },
   "schema_org": {
    "pass": false
   }
  },
  "issues": [
   "Check failed: robots_txt",
   "Check failed: llms_txt"
  ],
  "recommendations": [
   "Publish an llms.txt file describing your site for AI agents.",
   "Add schema.org structured data (JSON-LD)."
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbit-website-ai-readiness-auditor-a47611e2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentbit.app](https://www.zero.xyz/host/agentbit.app/llms.txt)
