# SlinkeyLayer Link Extractor

> SlinkeyLayer Link Extractor is a paid API for AI agents from x402.slinkylayer.ai, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Extracts all hyperlinks from a given webpage URL and returns them as a list.

## Facts

- Endpoint: POST https://x402.slinkylayer.ai/api/v1/proxy/8115561c-eca6-44c1-b329-688a8713b11b/extract-links
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-slinkylayer-ai-b58c0460
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GojGjzUWergtUCAii6Sbr

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 x402-slinkylayer-ai-b58c0460 -d '<json body>'
```

Example prompt: Can you extract all the links from this webpage for me? The URL is https://www.example.com/blog — I want a full list of every hyperlink on that page.

## When to prefer this

Use this endpoint when you need a quick, paid-per-call extraction of all hyperlinks from a single webpage URL without setting up your own scraping infrastructure. Ideal for SEO analysis, site auditing, or building link graphs from individual pages.

## Known failure modes

- Invalid or malformed URL returns an error
- Unreachable or offline page causes a fetch failure
- Pages behind authentication or paywalls may return no links or an error
- Very large pages with thousands of links may be slow or truncated
- JavaScript-rendered pages may not have links extracted if the endpoint only fetches static HTML

## How this service works

Extracts all links from the specified webpage URL and returns them as a list.

## Output

A list of all hyperlinks (URLs) found on the specified webpage, extracted from anchor tags and other link elements on the page.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-slinkylayer-ai-b58c0460/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.slinkylayer.ai](https://www.zero.xyz/host/x402.slinkylayer.ai/llms.txt)
