# Webbersites Scratchpad Read

> Webbersites Scratchpad Read is a paid API for AI agents from api.webbersites.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Retrieves previously stored scratchpad content (text or JSON) for the authenticated wallet identity by pad name, optionally returning the raw document.

## Facts

- Endpoint: GET https://api.webbersites.com/api/scratchpad/:name
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/webbersites-scratchpad-read-cf1a9c38
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KNVvLrlpnZBb7w0i-vohW

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 webbersites-scratchpad-read-cf1a9c38
```

Example prompt: Fetch the contents of my scratchpad named 'project-notes' — give me the raw document without the JSON wrapper.

## When to prefer this

Use this endpoint when you need to retrieve data previously written to a named scratchpad associated with a specific wallet identity, especially for cross-session or cross-device persistence without a traditional auth system. Prefer this over generic storage lookups when the wallet itself is the identity mechanism.

## Known failure modes

- Pad not found for the given name and wallet — 404 response
- Wallet payment fails or is insufficient — 402 response
- Invalid pad name or missing path parameter — 400 or 422 response
- Pad has expired and no longer exists — 404 or 410 response

## How this service works

Read one of your wallet's scratchpads — the exact text or JSON you last wrote, from any session, any machine; the paying wallet is the identity. Add ?raw=1 for the bare document instead of the JSON envelope. Reading extends the pad's life 30 days.

## Output

Returns a JSON envelope containing the pad's text or JSON content, content-type, created_at, updated_at, and expires_at timestamps. If ?raw=1 is passed, returns the bare document with its original content-type. Reading the pad extends its expiry by 30 days.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "raw": {
       "type": "string",
       "description": "raw=1 returns the bare document with its original content-type"
      },
      "name": {
       "type": "string",
       "description": "Pad name in the URL path"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "pad": {
       "type": "string"
      },
      "content": {
       "type": "string"
      },
      "created_at": {
       "type": "string"
      },
      "expires_at": {
       "type": "string"
      },
      "updated_at": {
       "type": "string"
      },
      "content_type": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/webbersites-scratchpad-read-cf1a9c38/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.webbersites.com](https://www.zero.xyz/host/api.webbersites.com/llms.txt)
