# Webber Sites Whole-Site Multi-Page Generator

> Webber Sites Whole-Site Multi-Page Generator is a paid API for AI agents from api.webbersites.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Generates up to 6 complete, consistently branded HTML pages in a single API call, with shared navigation, styles, and layout templates.

## Facts

- Endpoint: POST https://api.webbersites.com/api/website/build
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/webber-sites-whole-site-multi-page-generator-95d9a698
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0JqBzz7xPWc2ocsftWknx

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 webber-sites-whole-site-multi-page-generator-95d9a698 -d '<json body>'
```

Example prompt: Build me a complete 3-page website for my bakery 'Crumb & Co' — include a Home page with the headline 'Freshly Baked Every Morning', an About page, and a Contact page, using warm terracotta and cream colors, the editorial template, and a footer that says '© 2025 Crumb & Co. All rights reserved.'

## When to prefer this

Choose this endpoint when you need a complete, multi-page website generated in a single call with consistent branding across all pages. Prefer this over the single-page /api/website/page endpoint when the user needs more than one page or wants automatic shared navigation. Ideal for quickly bootstrapping a full business or portfolio site ready for upload without post-processing.

## Known failure modes

- Missing required site_name field returns 400 validation error
- Pages array exceeds 6 items returns a limit exceeded error
- Invalid hex color values in colors array may cause style generation failure
- Invalid template name (not horizon, split, or editorial) may fall back to seed default or return error
- Malformed hero_images URLs may result in broken image references in generated HTML
- Payment not fulfilled via x402 protocol results in 402 Payment Required response

## How this service works

WHOLE-SITE generator — up to 6 finished, consistent HTML pages in one call. POST a site name, shared branding (colors, logo, footer), and a pages[] array (each with page_name, headline, content sections, hero images); one seed styles every page identically and a shared nav linking all pages is built automatically. Returns ready-to-upload files plus nav.json. The multi-page version of /api/website/page.

## Output

Returns a set of ready-to-upload HTML files (up to 6 pages), a nav.json file linking all pages, and a shared style seed — each page is consistently styled with the same colors, logo, footer, and navigation structure.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "site_name",
      "pages"
     ],
     "properties": {
      "logo": {
       "type": "object",
       "description": "Auto-generate mark: {query, colors, shape}"
      },
      "seed": {
       "type": "string",
       "description": "Style seed — omit for random; returned so you can add pages later"
      },
      "pages": {
       "type": "array",
       "description": "1-6 pages: [{page_name, headline, title, caption, tagline, hero_images, content, cta}]"
      },
      "colors": {
       "type": "array",
       "description": "1-2 accents, hex or CSS names"
      },
      "footer": {
       "type": "string",
       "description": "Footer text (all pages)"
      },
      "logo_url": {
       "type": "string",
       "description": "Nav logo image URL"
      },
      "template": {
       "type": "string",
       "description": "horizon, split, or editorial; omit to let the seed choose"
      },
      "site_name": {
       "type": "string",
       "description": "Brand/site name (required)"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "seed": {
       "type": "string"
      },
      "pages": {
       "type": "array"
      },
      "nav_json": {
       "type": "object"
      },
      "template": {
       "type": "string"
      },
      "page_count": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "seed": "nw-2026",
  "pages": [
   {
    "html": "<!DOCTYPE html>…",
    "filename": "index.html",
    "page_name": "home"
   }
  ],
  "nav_json": {
   "links": []
  },
  "template": "horizon",
  "page_count": 2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/webber-sites-whole-site-multi-page-generator-95d9a698/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)
