# Crawl - Link Extraction from URL

> Crawl - Link Extraction from URL is a paid API for AI agents from crawl.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Extracts all hyperlinks from a given webpage URL, returning the discovered links as structured data

## Facts

- Endpoint: POST https://crawl.orbonomy.xyz/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/crawl-link-extraction-from-url-381bef63
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xGN2kLtVZ-g8b3TZjPEK7

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 crawl-link-extraction-from-url-381bef63 -d '<json body>'
```

Example prompt: Can you pull out all the links from this page for me: https://example.com/blog — I want to see every URL it links to.

## When to prefer this

Choose this endpoint when you need to quickly extract hyperlinks from a specific webpage without setting up authentication or subscriptions. It is well-suited for AI agents that need pay-per-use web access and want to discover outbound links on a page as part of a larger workflow, such as site mapping, content discovery, or link analysis.

## Known failure modes

- URL is unreachable or returns a non-200 status — extraction fails with error in response
- URL is a dynamically rendered JavaScript-heavy page — links may not be fully captured
- Malformed or invalid URL input — likely returns an error or empty result
- Payment of $0.15 USDC via x402 fails — request is rejected before processing
- Target page blocks scrapers or returns a CAPTCHA — links may be missing or incomplete

## 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 target 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/crawl-link-extraction-from-url-381bef63/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crawl.orbonomy.xyz](https://www.zero.xyz/host/crawl.orbonomy.xyz/llms.txt)
