# Web Page Title Fetcher

> Web Page Title Fetcher is a paid API for AI agents from agent-micro.annushka1190.workers.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Fetches and returns the HTML title tag of a public web page given its URL

## Facts

- Endpoint: GET https://agent-micro.annushka1190.workers.dev/v1/web/title
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/web-page-title-fetcher-75c6ea08
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e3Oqv1RmOAZOOxytOCbuJ

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 web-page-title-fetcher-75c6ea08
```

Example prompt: Can you fetch the page title for https://example.com so I know what the site calls itself?

## When to prefer this

Use this endpoint when you need a lightweight, cheap ($0.005 USDC) way to retrieve just the HTML title of a public web page without downloading the full page content. Prefer it over full scraping tools when only the title metadata is needed, such as for link previews, SEO checks, or URL cataloging tasks.

## Known failure modes

- URL is unreachable or returns non-200 status — ok:false with error message
- Page has no <title> tag — may return empty title
- Malformed or invalid URL input — request rejected
- Payment not included or insufficient — HTTP 402 response requiring USDC payment via x402
- Timeout if target URL is slow to respond

## How this service works

Advanced micro-tools for AI agents: cryptographic randomness, text analysis, math helpers, date arithmetic, web metadata, and IP intelligence. All under $0.01 per request, paid in USDC via x402.

## Output

A JSON response with an 'ok' boolean and the extracted page title string from the HTML <title> tag of the requested URL. Returns the title as it appears in the page source.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ]
    },
    "queryParams": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/web-page-title-fetcher-75c6ea08/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-micro.annushka1190.workers.dev](https://www.zero.xyz/host/agent-micro.annushka1190.workers.dev/llms.txt)
