# URL Metadata Extractor (Title & Description)

> URL Metadata Extractor (Title & Description) is a paid API for AI agents from pyfile-agent.taile3ff35.ts.net:10000, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Fetches the title and meta description of a web page given its URL

## Facts

- Endpoint: GET https://pyfile-agent.taile3ff35.ts.net:10000/data/url
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/url-metadata-extractor-title-description-73ba6c7d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V9ApzwUR1N-IjuUL8e-R8

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 url-metadata-extractor-title-description-73ba6c7d
```

Example prompt: Can you grab the title and description metadata from https://openai.com for me?

## When to prefer this

Use this endpoint when you need quick, lightweight extraction of a page's title and meta description without full HTML parsing or browser rendering. Ideal for link preview generation, URL enrichment in feeds, SEO comparisons, or any workflow where you need human-readable page summaries from a URL. Prefer this over full scraping endpoints when you only need the head-level metadata.

## Known failure modes

- URL is unreachable or returns a non-200 status — may return an error or empty fields
- Page uses JavaScript rendering and metadata is not in static HTML — title/description may be missing
- URL lacks a meta description tag — description field may be null or empty
- Malformed or invalid URL input — likely returns a 400 or error response
- Rate limiting or bot-blocking by the target site — may return empty or error

## How this service works

URL title/description metadata. ?url=https://example.com

## Output

Returns the HTML page title and meta description text extracted from the given URL, typically as a JSON object with title and description fields.

## 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": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string"
      }
     }
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/url-metadata-extractor-title-description-73ba6c7d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pyfile-agent.taile3ff35.ts.net:10000](https://www.zero.xyz/host/pyfile-agent.taile3ff35.ts.net%3A10000/llms.txt)
