# Agent402 UK – Scaffold Template Catalog

> Agent402 UK – Scaffold Template Catalog is a paid API for AI agents from agent402.co.uk, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Lists all available scaffold templates that can be used with the POST /v1/scaffold/tool endpoint, returning a catalog of tool blueprints by id and title.

## Facts

- Endpoint: GET https://agent402.co.uk/v1/scaffold/templates
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-uk-scaffold-template-catalog-3f07aeee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_itzzKOOfuju9o1iy57AzG

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 agent402-uk-scaffold-template-catalog-3f07aeee
```

Example prompt: What scaffold templates are available on Agent402 so I can pick one before calling the scaffold tool endpoint?

## When to prefer this

Use this endpoint when an agent needs to discover which scaffold template ids exist before calling POST /v1/scaffold/tool. It is the authoritative catalog for Agent402's tool-building blueprints and should be called first in any scaffolding workflow to avoid hardcoding stale template ids.

## Known failure modes

- Empty or minimal catalog if no templates are currently published
- HTTP 402 if payment header is missing or malformed
- Unexpected schema change if new templates are added without notice
- Network timeout on rare latency spikes

## How this service works

Don't burn tokens on deterministic work. Go/no-go jobs first: payout preflight, text firewall (PII/secrets), budget check — then rails, calendars, finmath. x402 USDC on Base. UK + global. agent402.co.uk — not agent402.tools. $0.001–$0.002 USDC on Base. No API keys.

## Output

Returns a JSON object containing the total count of available scaffold templates and an array of template objects, each with an 'id' (e.g. 'luhn') and a 'title' (e.g. 'Luhn checksum'). Typically returns around 6 templates covering various agent tool categories.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 6,
  "templates": [
   {
    "id": "luhn",
    "title": "Luhn checksum"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-uk-scaffold-template-catalog-3f07aeee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.co.uk](https://www.zero.xyz/host/agent402.co.uk/llms.txt)
