# Orthogonal Linkup Web Fetch

> Orthogonal Linkup Web Fetch is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches a single webpage's content from a given URL, with optional JavaScript rendering, image extraction, and raw HTML inclusion.

## Facts

- Endpoint: POST https://x402.orthogonal.com/linkup/fetch
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-linkup-web-fetch-06a5da4f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JoFh7Rbd8SE6IHk7U9ot6

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 orthogonal-linkup-web-fetch-06a5da4f -d '<json body>'
```

Example prompt: Can you fetch the full content of this page for me — https://example.com/article — and make sure JavaScript is rendered so I get the complete text?

## When to prefer this

Choose this endpoint when you need to retrieve the content of a specific known URL — especially when you need JavaScript rendering for dynamic pages, image extraction, or raw HTML access. It is ideal for single-page content retrieval tasks rather than broad crawls. Prefer it over generic HTTP fetch when you need rendered JS content or structured extraction options without building your own browser automation.

## Known failure modes

- URL is unreachable or returns a non-200 status — fetch fails with an error
- JavaScript rendering timeout for heavy or slow pages
- Bot-detection or CAPTCHA blocks on target site prevent successful fetch
- Invalid or malformed URL returns a validation error
- Private or login-gated pages return incomplete content without authentication

## How this service works

The /fetch endpoint allows you to fetch a single webpage from a given URL.

## Output

Returns structured content of the fetched webpage, which may include the main readable text/content, optionally extracted images (URLs or data), and optionally the raw HTML source, depending on the flags passed in the request.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "The URL of the webpage you want to fetch."
  },
  "renderJs": {
   "type": "boolean",
   "description": "Defines whether the API should render the JavaScript of the webpage."
  },
  "extractImages": {
   "type": "boolean",
   "description": "Defines whether the API should extract the images from the webpage in its response."
  },
  "includeRawHtml": {
   "type": "boolean",
   "description": "Defines whether the API should include the raw HTML of the webpage in its response."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-linkup-web-fetch-06a5da4f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
