# x402.shizu.me Tollbooth Fetch

> x402.shizu.me Tollbooth Fetch is a paid API for AI agents from x402.shizu.me, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Fetches and extracts content from a tollbooth-registered domain, deducting the publisher's fee plus route price from your credit balance and routing 80% of fees to the publisher.

## Facts

- Endpoint: GET https://x402.shizu.me/toll/fetch
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-shizu-me-tollbooth-fetch-1d3bdc0d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cd4_Zf7towBQvEshlb-Ov

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-shizu-me-tollbooth-fetch-1d3bdc0d
```

Example prompt: Fetch the content from https://news.example.com/article/latest using the tollbooth — it's registered on the x402 tollbooth and I have credits in my balance to cover the publisher's fee.

## When to prefer this

Use this endpoint when you need to access content from a domain specifically registered on the x402.shizu.me tollbooth, where the publisher has opted into micropayment-gated access. This is the right choice when you have a credit balance on x402.shizu.me and want to pay a small per-fetch fee to retrieve publisher content, with 80% of the fee accruing to the content owner. Prefer this over the generic /fetch endpoint when the target domain is a tollbooth participant.

## Known failure modes

- 404 if the requested domain is not registered in the tollbooth
- Insufficient credit balance causing payment failure
- Domain is registered but page URL returns no content
- Network timeout fetching the remote page
- Invalid URL format provided

## How this service works

Fetch a page from a tollbooth-registered domain. Costs the publisher's fee_credits from your credit balance (top up at /credits/buy) plus this route's price; 80% of the fee accrues to the publisher. Returns extracted page content. 404 if the domain isn't registered; 409 (not 402) if your credit balance is short.

## Output

Returns the extracted main content of the requested tollbooth-registered page as clean text, along with a deduction from the caller's credit balance covering the publisher's fee plus the route price. Returns a 404 error if the domain is not registered in the tollbooth.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string"
      }
     },
     "required": [
      "url"
     ]
    }
   },
   "required": [
    "method"
   ]
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://example.com/post",
  "content": "...",
  "charged_credits": 2,
  "publisher_credited": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-shizu-me-tollbooth-fetch-1d3bdc0d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.shizu.me](https://www.zero.xyz/host/x402.shizu.me/llms.txt)
