# 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).

Reads back the content of a named scratchpad pad stored at api.webbersites.com

## Facts

- Endpoint: GET https://api.webbersites.com/api/scratchpad/%7Bname%7D
- 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-20691829
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hjZiE3_Tclh5v0GFcrOKD

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-20691829
```

Example prompt: Read back the contents of my scratchpad called 'memory' from the WebberSites pad store and show me what's in it.

## When to prefer this

Use this endpoint when an AI agent needs to retrieve previously stored persistent memory or data blobs by name across sessions, specifically using the WebberSites x402 scratchpad infrastructure. Prefer this over generic key-value stores when already using the WebberSites API ecosystem and when cross-session agent memory is needed at very low cost per read.

## Known failure modes

- Pad not found — returns an error if the specified name does not exist or has expired
- Expired pad — pads have an expiry date and reading after expiration may return empty or error
- Wrong pad name — typos in the name path parameter result in a not-found response
- Network or payment failure — x402 micropayment of $0.001 USDC must succeed before response is returned

## How this service works

WebberSites – Branding, Web Design, Photography, Marketing Strategy - Youngstown Ohio

## Output

Returns a JSON object containing the pad name, its stored content, content-type, creation timestamp, expiration timestamp, and last-updated timestamp. Optionally returns the raw document with its original content-type if the 'raw' query param is set to '1'.

## 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"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "pad": "memory",
  "bytes": 122,
  "remember": "You have a scratchpad 'memory' at api.webbersites.com — GET /api/scratchpad/memory reads it back any session.",
  "replaced": false,
  "expires_at": "2026-09-07T00:00:00.000Z",
  "content_type": "application/json"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/webbersites-scratchpad-read-20691829/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)
