# WebberSites Scratchpad Storage API

> WebberSites Scratchpad Storage API 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-15).

Lists named scratchpad memory pads associated with a wallet, showing size and expiry for each stored pad

## Facts

- Endpoint: GET https://api.webbersites.com/api/scratchpad
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/webbersites-scratchpad-storage-api-eacefe9a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RJZbm7fH-a2-WII9u8TP6

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-storage-api-eacefe9a
```

Example prompt: Show me all my scratchpad pads — I want to see each pad's name, how many bytes it's using, and when it expires.

## When to prefer this

Use this endpoint when an AI agent needs to inspect or audit its own stored scratchpad memory entries, check storage usage, or identify pads nearing expiration — especially within the WebberSites x402 ecosystem where scratchpad state is used for keyless agent persistence.

## Known failure modes

- Invalid or missing wallet auth returns 402 or 401 error
- No pads exist yet returns empty pads array
- Malformed properties filter parameter may return 400
- Expired payment token causes 402 re-challenge

## How this service works

List your wallet's scratchpads: names, sizes, updated and expiry dates. The cheap 'do I have memory here?' call for the start of a session.

## Output

A JSON object containing a list of named scratchpad pads, each with a name, byte size, expiry datetime, and last updated datetime, plus the associated wallet address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "pads": [
   {
    "name": "memory",
    "bytes": 122,
    "expires_at": "2026-09-07T00:00:00.000Z",
    "updated_at": "2026-07-09T00:00:00.000Z"
   }
  ],
  "wallet": "0xabc…"
 }
}
```

## More

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