# X402 Agent Data Utility – Web Links Extractor

> X402 Agent Data Utility – Web Links Extractor is a paid API for AI agents from x402.feld-feder.at, paid per call via x402, $0.002/call, status down (last checked 2026-09-15).

Extracts and returns hyperlinks found on a given web page, payable per-request via x402 micropayments.

## Facts

- Endpoint: POST https://x402.feld-feder.at/v1/web/links
- Price: $0.002/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-agent-data-utility-web-links-extractor-7ad9819b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eVMSzDWcZ_UUBPtYw4R7O

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-agent-data-utility-web-links-extractor-7ad9819b -d '<json body>'
```

Example prompt: Can you pull all the hyperlinks from https://example.com/blog and give me the list of URLs 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 without standing up your own scraping infrastructure. It is ideal for AI agents that need to discover outbound links on demand and can pay $0.002 USDC per call via x402. Prefer alternatives if you need full-page content extraction, JavaScript rendering, or bulk crawling.

## Known failure modes

- Target URL is unreachable or returns non-200 status — empty links array or error response
- Malformed or missing URL input — request fails with validation error
- Target page uses heavy JavaScript rendering that prevents static link extraction — links array may be incomplete
- Payment not attached or insufficient — x402 payment required error
- Rate limiting or blocking by target server — fetch failure

## How this service works

Pay-per-request data tools for AI agents.

## Output

Returns a JSON object with ok: true and a data.links array containing the hyperlinks extracted from the target webpage. Each entry in the links array represents a URL or anchor found on the page.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "title": "WebUrlRequest",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "title": "Url",
       "maxLength": 4096,
       "minLength": 1
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "title": "ResponseEnvelope[WebLinksData]",
     "required": [
      "data"
     ],
     "properties": {
      "ok": {
       "type": "boolean",
       "const": true,
       "title": "Ok",
       "default": true
      },
      "data": {
       "type": "object",
       "title": "WebLinksData",
       "required": [
        "links"
       ],
       "properties": {
        "links": {
         "type": "array",
         "items": {
          "type": "object",
          "title": "WebLinkData",
          "required": [
           "url",
           "classification"
          ],
          "properties": {
           "url": {
            "type": "string",
            "title": "Url"
           },
           "classification": {
            "enum": [
             "internal",
             "external"
            ],
            "type": "string",
            "title": "Classification"
           }
          }
         },
         "title": "Links"
        }
       }
      },
      "cache": {
       "anyOf": [
        {
         "type": "object",
         "title": "CacheInfo",
         "required": [
          "hit"
         ],
         "properties": {
          "hit": {
           "type": "boolean",
           "title": "Hit"
          },
          "age_seconds": {
           "type": "integer",
           "title": "Age Seconds",
           "default": 0,
           "minimum": 0
          }
         }
        },
        {
         "type": "nu
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "data": {
   "links": []
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-agent-data-utility-web-links-extractor-7ad9819b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.feld-feder.at](https://www.zero.xyz/host/x402.feld-feder.at/llms.txt)
