# SEO Title Present Audit

> SEO Title Present Audit is a paid API for AI agents from seo.halowerk.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Passively audits a public web page to verify whether an HTML title tag is present and evaluates it against documented SEO criteria, returning the observation, verdict, evidence source, and recommended action.

## Facts

- Endpoint: POST https://seo.halowerk.com/v1/title-present-audit
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/seo-title-present-audit-0de9a2a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Tmah0WPm4EEwqPZNKVzcR

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 seo-title-present-audit-0de9a2a6 -d '<json body>'
```

Example prompt: Can you do a passive SEO audit of https://example.com and check whether the page has an HTML title tag present — I want to know the verdict, what evidence it found, and what action I should take?

## When to prefer this

Choose this endpoint when you need a lightweight, passive, read-only check specifically confirming HTML title tag presence on a public page — ideal for pre-publish checklists, post-deploy verification, or regression monitoring after site changes. Prefer it over full-crawl SEO suites when you only need the title criterion evaluated quickly and cheaply without side effects or authentication.

## Known failure modes

- Target URL is unreachable or returns a non-200 status, resulting in an inability to fetch evidence
- Malformed or non-public URL rejected at input validation
- Page uses heavy JavaScript rendering that prevents static title detection, noted as a limitation
- Rate limiting or network timeouts on the target server causing incomplete audit
- Domain normalization fails for unusual TLDs or non-standard URLs

## How this service works

Title present audit fetches current public evidence from the supplied target and evaluates the documented criterion. It returns the observation, threshold, verdict, exact evidence source, limitations and a mode-specific action. The check is passive: no login attempt, payload injection, exploit, purchase, form submission or load test is performed.

## Output

Returns a structured audit result including: the observation (what was found on the page), the threshold being evaluated against, a pass/fail verdict, the exact evidence source URL, any limitations of the passive check, and a mode-specific recommended action — all without performing any login, form submission, or intrusive testing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "target": {
   "type": "string",
   "maxLength": 2048,
   "minLength": 3,
   "description": "Public HTTP(S) URL or domain to inspect. A bare domain is normalized to HTTPS."
  },
  "context": {
   "type": "object",
   "description": "Optional non-secret correlation labels returned unchanged only in the request lifecycle.",
   "maxProperties": 12,
   "additionalProperties": {
    "type": [
     "string",
     "number",
     "boolean",
     "null"
    ]
   }
  },
  "baseline": {
   "type": [
    "object",
    "null"
   ],
   "description": "Optional baseline returned by a previous snapshot call.",
   "additionalProperties": true
  },
  "compare_url": {
   "type": "string",
   "maxLength": 2048,
   "minLength": 3,
   "description": "Optional public comparison URL. Used by change and monitoring services."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/seo-title-present-audit-0de9a2a6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from seo.halowerk.com](https://www.zero.xyz/host/seo.halowerk.com/llms.txt)
