# Cerwal Link Extractor

> Cerwal Link Extractor is a paid API for AI agents from cerwal.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Extracts all hyperlinks from a given URL via pay-per-request web scraping

## Facts

- Endpoint: POST https://cerwal.vercel.app/api/links
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cerwal-link-extractor-71fc9d14
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_od3198fof22z6rjqsyaN4

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 cerwal-link-extractor-71fc9d14 -d '<json body>'
```

Example prompt: Can you extract all the links from https://example.com/blog for me? I need every URL found on that page.

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-request link extraction from a single URL with no auth setup or subscription required. Ideal for AI agents that need ad-hoc web scraping without managing API keys, especially in x402-compatible payment environments.

## Known failure modes

- URL is unreachable or returns a non-200 status — success: false
- URL is malformed or missing — validation error
- Target page blocks scraping (bot detection, CAPTCHA) — empty or partial results
- Payment via x402 fails — request rejected before execution
- Page has no links — data returns empty link list

## How this service works

Web scraping and search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing the links extracted from the given URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "URL to extract links from"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cerwal-link-extractor-71fc9d14/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cerwal.vercel.app](https://www.zero.xyz/host/cerwal.vercel.app/llms.txt)
