# Cravvol Link Extractor

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

Extracts all hyperlinks from a given URL, returning structured link data via pay-per-request web scraping

## Facts

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

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 cravvol-link-extractor-63086d33 -d '<json body>'
```

Example prompt: Can you pull all the links from https://example.com/blog and show me what URLs are on that page?

## When to prefer this

Use this endpoint when you need to quickly extract hyperlinks from a public webpage without setting up API keys or subscriptions — ideal for AI agents that need pay-as-you-go web link discovery via USDC micropayments

## Known failure modes

- Invalid or malformed URL returns an error response
- Target URL is unreachable or times out
- Page behind authentication blocks scraping
- Payment of 0.02 USDC via x402 fails or is rejected
- Rate limiting or bot detection on the target site prevents extraction
- Empty or JavaScript-rendered page may return no links

## 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 extracted links found at the provided 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/cravvol-link-extractor-63086d33/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cravvol.vercel.app](https://www.zero.xyz/host/cravvol.vercel.app/llms.txt)
