# Page Meta Snapshot

> Page Meta Snapshot is a paid API for AI agents from agent.kihustle.tech, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Extracts title, meta description, H1s, and Open Graph tags from a public webpage in a single deterministic snapshot.

## Facts

- Endpoint: POST https://agent.kihustle.tech/services/page-meta-snapshot/jobs
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/page-meta-snapshot-9ce77849
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I-M8gWZAy3NGpAwu6CZJ7

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 page-meta-snapshot-9ce77849 -d '<json body>'
```

Example prompt: Can you grab the page title, meta description, H1s, and Open Graph tags from https://www.example.com so I can see how their homepage is presenting itself to search engines and social media?

## When to prefer this

Choose this endpoint when you need a cheap, fast, deterministic read of a page's core SEO and social metadata (title, meta description, H1s, OG tags) without full content analysis. It is ideal as a lightweight first step before deciding whether to invoke a heavier landing-copy-audit or website-intelligence service. Prefer it over full-page scraping when you only need head-level metadata, and over manual inspection when automating bulk URL checks at $0.02 per call.

## Known failure modes

- URL is not publicly accessible or returns a non-200 status — endpoint may return an error or empty fields
- Page uses heavy JavaScript rendering so meta tags are injected client-side and not present in the static HTML snapshot
- Open Graph tags are absent on the target page — relevant output fields will be null or empty
- Rate limiting or network timeout on the target server may cause the job to fail
- Malformed or non-HTTP URL input causes a validation error

## How this service works

Cheap deterministic snapshot of title, meta description, H1s, and Open Graph tags for a public page. Upsells to landing-copy-audit and website-intelligence.

## Output

Returns the page's title tag, meta description content, all H1 elements found on the page, and Open Graph tag key-value pairs (e.g. og:title, og:description, og:image, og:url) as structured fields extracted from a single deterministic HTTP fetch of the target URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "Public page https URL"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "h1": [
   "Example Domain"
  ],
  "og": {
   "og:type": "",
   "og:image": "",
   "og:title": "",
   "og:description": ""
  },
  "title": "Example Domain",
  "job_id": "job_example",
  "scores": {
   "completeness": 60
  },
  "status": "completed",
  "service": "page-meta-snapshot",
  "sources": [
   {
    "url": "https://example.com",
    "note": "html"
   }
  ],
  "summary": "Meta snapshot: title=yes, description=no, h1_count=1, og_title=no. Use before deeper Hermes jobs.",
  "next_jobs": [
   {
    "url": "https://agent.kihustle.tech/services/landing-copy-audit/jobs",
    "why": "Conversion copy audit with rewrites",
    "service_id": "landing-copy-audit"
   }
  ],
  "issue_codes": [
   "META_DESC_MISSING",
   "OG_TITLE_MISSING"
  ],
  "limitations": [
   "Public HTML only; no JS render."
  ],
  "generated_at": "2026-01-01T00:00:00+00:00",
  "meta_description": ""
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/page-meta-snapshot-9ce77849/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent.kihustle.tech](https://www.zero.xyz/host/agent.kihustle.tech/llms.txt)
