# Notte Session Page Scraper

> Notte Session Page Scraper is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Scrapes and extracts content from the current page of an active browser session, with optional scoping, structured output, and link/image extraction.

## Facts

- Endpoint: POST https://x402.orthogonal.com/notte/sessions/:id/page/scrape
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/notte-session-page-scraper-a3bcc804
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oZVGyrzLFiLCaWa4WQVJf

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 notte-session-page-scraper-a3bcc804 -d '<json body>'
```

Example prompt: I'm in the middle of a Notte browser session (session ID: abc123) — scrape the current page and give me just the main content with all the links, using the selector '.product-list' to focus on the product section.

## When to prefer this

Use this endpoint when you already have an active Notte browser session and need to extract content from the page it is currently viewing. Unlike a standalone URL scraper, this endpoint operates within a live session context (with cookies, auth state, and navigation history), making it ideal for extracting data from pages that require login, multi-step navigation, or dynamic rendering. Prefer this over raw HTML scrapers when you need structured output, selector-scoped extraction, or clean main-content-only results.

## Known failure modes

- Invalid or expired session ID returns a 404 or session-not-found error
- Selector that matches nothing returns empty or partial content
- Malformed response_format schema causes a validation/parsing error
- Page not yet fully loaded at time of scrape may return incomplete content
- Session that has navigated away from intended page returns unexpected content

## How this service works

Scrape content from the current page in the session.

## Output

Returns the scraped content of the current page in the session, which may include cleaned main-body text, a list of hyperlinks, images, and/or a structured JSON object matching the provided response_format schema. Navigation elements and footers are excluded by default.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "selector": {
   "type": "string",
   "description": "Playwright selector to scope the scrape"
  },
  "instructions": {
   "type": "string",
   "description": "Additional extraction instructions"
  },
  "scrape_links": {
   "type": "boolean",
   "description": "Scrape links (default: true)"
  },
  "scrape_images": {
   "type": "boolean",
   "description": "Scrape images (default: false)"
  },
  "response_format": {
   "type": "object",
   "description": "Pydantic model or JSON Schema for structured extraction"
  },
  "only_main_content": {
   "type": "boolean",
   "description": "Only main content, exclude nav/footer (default: true)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/notte-session-page-scraper-a3bcc804/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)
