# Toll402 Extract Page Links & Meta

> Toll402 Extract Page Links & Meta is a paid API for AI agents from toll402.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Fetches a public URL and extracts all hyperlinks plus page metadata (title, description, etc.) in structured form

## Facts

- Endpoint: POST https://toll402.dev/v1/t/extract_page_links_meta
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/toll402-extract-page-links-meta-48e7faa1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9ActyuGB5GVwUAtm0Lw6V

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 toll402-extract-page-links-meta-48e7faa1 -d '<json body>'
```

Example prompt: Can you extract all the links and page metadata from https://example.com/blog so I can see what URLs are referenced on that page?

## When to prefer this

Use this endpoint when you need a fast, pay-per-call extraction of all hyperlinks and metadata from a single public web page without setting up your own scraping infrastructure. Prefer it over full-page markdown converters when you specifically need the link graph rather than readable content, and over generic crawlers when you need just one page processed on demand.

## Known failure modes

- URL is not publicly accessible or requires authentication — returns error
- Page returns non-HTML content that cannot be parsed for links
- Network timeout or unreachable host
- Malformed URL input fails schema validation
- JavaScript-rendered pages may not expose dynamically injected links since the fetcher may not execute JS

## How this service works

The OpenRouter for AI-agent tools: one gateway, one wallet, every capability. Built-in tools, forged tools, a global verified business directory and 2,000+ aggregated x402 services, all paid per call in USDC via x402 (HTTP 402). No signup, no API key.

## Output

A structured JSON object containing the list of hyperlinks found on the page (URLs and anchor text) along with page-level metadata such as title and description, returned as { ok: true, ... } with the extracted data.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string",
       "format": "uri",
       "description": "Public URL to fetch and parse"
      }
     },
     "required": [
      "url"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/toll402-extract-page-links-meta-48e7faa1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from toll402.dev](https://www.zero.xyz/host/toll402.dev/llms.txt)
