# Halowerk LLM Catalog

> Halowerk LLM Catalog is a paid API for AI agents from modell.halowerk.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns a filterable comparison table of language models with pricing (input, output, cache per million tokens), context window, max output length, batch discounts, and capability tags, each row timestamped for freshness.

## Facts

- Endpoint: POST https://modell.halowerk.com/v1/llm-catalog
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/halowerk-llm-catalog-c2b9ec54
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_c5ED-fDcLj4EdGHCm88dd

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 halowerk-llm-catalog-c2b9ec54 -d '<json body>'
```

Example prompt: Show me all LLMs with a context window of at least 128k tokens and an output price under $5 per million tokens — filter by capability tag 'coding' if possible and show me when each price was last verified.

## When to prefer this

Use this endpoint when you need structured, filterable, up-to-date pricing and capability data for LLMs across multiple vendors in a single call, especially when cost optimization or context window requirements are decision criteria. Prefer this over manually scraping vendor pricing pages or using static reference documents, since each row carries a freshness timestamp. Particularly useful for agents that need to programmatically select or recommend a model based on budget, context size, or capability constraints.

## Known failure modes

- Invalid filter combination (e.g. unrecognized vendor name or capability tag) returns an error or empty result set
- Stale price data: rows include a last-checked date so callers can detect outdated figures rather than receiving silently wrong data
- No models match the specified filters, returning an empty array
- Network or payment failure (x402 micropayment not completed) results in an authorization error
- Malformed POST body returns a 400-level validation error

## How this service works

A comparison table of language models: input, output and cache prices per million tokens, context window, maximum output length, batch discount and a short note on what each is suited to. Filter by vendor, by a maximum price, by the context window you need, or by capability tag. Every row carries the date its prices were last checked, so a stale figure is visible rather than silently wrong.

## Output

A table of language model records, each containing the model name, vendor, input/output/cache price per million tokens, context window size, maximum output length, batch discount if available, capability tags, a suitability note, and the date prices were last verified. Results can be filtered by vendor, price ceiling, minimum context window, or capability tag.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "tag": {
   "type": "string",
   "maxLength": 40,
   "description": "Only models carrying this capability tag, e.g. coding, speed, reasoning, cheap."
  },
  "sort": {
   "enum": [
    "input_price",
    "output_price",
    "context",
    "vendor"
   ],
   "type": "string",
   "default": "output_price",
   "description": "Sort order."
  },
  "vendor": {
   "type": "string",
   "maxLength": 64,
   "description": "Only models from this vendor, e.g. anthropic, openai, google."
  },
  "min_output": {
   "type": "integer",
   "minimum": 0,
   "description": "Only models able to emit at least this many output tokens."
  },
  "min_context": {
   "type": "integer",
   "minimum": 0,
   "description": "Only models whose context window is at least this many tokens."
  },
  "max_input_price": {
   "type": "number",
   "minimum": 0,
   "description": "Only models at or below this input price per million tokens."
  },
  "max_output_price": {
   "type": "number",
   "minimum": 0,
   "description": "Only models at or below this output price per million tokens."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/halowerk-llm-catalog-c2b9ec54/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from modell.halowerk.com](https://www.zero.xyz/host/modell.halowerk.com/llms.txt)
