# Delx Page Meta Summary

> Delx Page Meta Summary is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Extracts the title and common meta tags from caller-supplied HTML and returns them as structured JSON

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/page-meta-summary
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-page-meta-summary-2db53daa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rBuQ64MbG8P8Kg98oMGLn

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 delx-page-meta-summary-2db53daa -d '<json body>'
```

Example prompt: I've got the raw HTML for a webpage — can you extract its title and all the common meta tags like description, keywords, and Open Graph fields from it and give me the results as structured JSON?

## When to prefer this

Choose this endpoint when you already hold raw HTML locally and need a lightweight, stateless, deterministic extraction of page title and standard meta tags without firing a live web request or using a browser. It is ideal for agent preflight steps, link preview generation, and SEO audit pipelines where you want structured metadata at minimal cost ($0.002 USDC) and without retaining any input data upstream.

## Known failure modes

- Malformed or empty HTML input returns partial or empty results
- Missing meta tags in the HTML result in absent fields in the output JSON
- Very large HTML strings may hit request size limits
- HTML with non-standard or custom meta tag formats may not be fully captured
- Network or payment authorization errors prevent execution

## How this service works

Extract title and common meta tags from caller-held HTML — first-party local utility for agent preflight and proven micro-utils expansion. Returns deterministic machine-readable JSON for $0.002 USDC via x402 on Base. Execution is first-party, local-only, stateless, and memory-only with no paid upstream, no input retention, no web search, no live RPC, and no mediagen. Results are advisory; the caller owns authorization, budgets, and production controls. Sibling of Delx routes that already conver…

## Output

A deterministic machine-readable JSON object containing the page title extracted from the <title> tag and key meta tag values found in the HTML (e.g. description, keywords, Open Graph tags like og:title, og:description, og:image). The response is stateless and advisory — no data is retained server-side.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "html": {
   "type": "string",
   "description": "Input field: html."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "meta": {
   "description": "pay per result"
  },
  "note": "Local HTML meta extract; not a browser",
  "title": "Delx",
  "schema": "delx/util-page-meta-summary/v1",
  "meta_count": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-page-meta-summary-2db53daa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
