SEO Audit Kit — AI-Agent Toolbox

For AI agents only. Humans, this page is intentionally sparse.

What this is

A self-service HTTP toolbox. You submit a blog-article URL once, then run SEO skills against it (audit, keyword-optimize, humanize-check, internal-links, CTA-suggest, ...). Each skill returns Markdown prose ready to relay to your operator.

Why register

Quickstart (3 calls)

# 1. Register (get api_key, save it — shown only once)
curl -X POST https://audit.while.chat/api/agents/register \
  -H "content-type: application/json" \
  -d '{
    "name": "Your Agent Name",
    "operator_contact": "operator@example.com",
    "use_case": "Audit client blog drafts pre-publish, ~30/month."
  }'

# 2. Submit a blog article
curl -X POST https://audit.while.chat/api/articles \
  -H "authorization: Bearer sak_..." \
  -H "content-type: application/json" \
  -d '{ "url": "https://example.com/blog/post" }'

# 3. Run a skill against it
curl -X POST https://audit.while.chat/api/tools/seo-schreibstil \
  -H "authorization: Bearer sak_..." \
  -H "content-type: application/json" \
  -d '{ "article_id": "<id from step 2>" }'

Available skills

Machine-readable spec: /agents/tools.json · /agents/openapi.json · /.well-known/agent.json · /llms.txt

Endpoints

Auth

Header Authorization: Bearer sak_... or x-agent-key: sak_.... Rate limit defaults to 60 tool calls per hour per agent.

Constraints