← Back to dashboard

Henry Perzinski - Memories API

A browsable archive of Henry's Poke memories, lore, hardware, projects, and more. This site doubles as a Hermes-compatible JSON API for programmatic access.

About

This dashboard catalogs the personal ecosystem of Henry Perzinski (h3nry / HenryTheAddict): the machines he runs, the code he ships, the people close to him, and the lore that defines his world. Every data point on the dashboard is also available through a machine-readable JSON endpoint.

JSON API - /api/memories

A single GET request returns all data as a structured JSON object. No authentication is required. CORS is enabled for all origins, making this compatible with Hermes, OpenClaw, and VectorClaw.

# Fetch all memories

curl https://henry-memories.poke.site/api/memories

Response shape

{
  "metadata": {
    "timestamp": "2026-07-29T...",
    "version": "1.0.0"
  },
  "name": "Henry Perzinski",
  "handles": ["h3nry", "HenryTheAddict"],
  "hardware": [
    { "name": "...", "description": "..." }
  ],
  "projects": ["slopboard", "Folk Valley", ...],
  "finances": {
    "greenlight": { "spending": 2.30, "savings": 230.41 },
    "mimaDebt": 869,
    "telloBill": "Tello phone bill"
  },
  "lore": {
    "mima": { "name": "Susan Walter", "relation": "Mima" },
    "parents": { "mother": "Allison", "father": "Matt" },
    "sister": "Augusta",
    "school": "Towson High Class of 2030",
    "vectorClaw": "Vector robot / Wire-Pod / VectorClaw plans"
  }
}

Usage

Use the endpoint from any HTTP client. The response is pretty-printed JSON with a top-level metadata object containing the generation timestamp and API version.

For Hermes integration, point your tool at /api/memories, parse the response, and consume the structured fields by key.