# Liquid Agent Vault Page Publisher

> Liquid Agent Vault Page Publisher is a paid API for AI agents from api.liquidagent.ai, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Publishes a public-facing financial dashboard page for a given Liquid Agent vault, with optional custom branding and label.

## Facts

- Endpoint: POST https://api.liquidagent.ai/v1/publish
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/liquid-agent-vault-page-publisher-92208757
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mm7mFzNKLpc5mwpgt0Cgs

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 liquid-agent-vault-page-publisher-92208757 -d '<json body>'
```

Example prompt: Publish a Liquid Agent vault page for vault ID 'vlt_abc123', title it 'Sarah's Money Hub', and brand it with the name 'Morning Bloom Finance', color #2ECC71, and icon at https://myapp.com/logo.png.

## When to prefer this

Choose this endpoint when you need to create or refresh a public-facing financial dashboard page tied to a specific Liquid Agent vault. It is ideal for agent-native fintech apps that want to expose a branded, embeddable money hub (yield, payments, micro-investing) without managing custom UI infrastructure. Prefer it over generic web-hosting or wallet-display APIs when the underlying vault is on the Liquid Agent platform and you need seamless integration with its earn, send, and invest features.

## Known failure modes

- Missing required 'vault' field returns a 400 validation error
- Invalid or non-existent vault ID results in a 404 or authorization error
- Malformed brand object (e.g. invalid color hex or unreachable iconUrl) may cause partial or failed publish
- Payment of $0.25 USDC not fulfilled results in 402 Payment Required
- Duplicate publish calls for the same vault may overwrite or conflict with existing pages

## How this service works

A dollar account that puts your money on autopilot: earn yield, send money in seconds, and buy stocks from $1, all from one balance, with none of the crypto.

## Output

Returns a response object confirming the vault page has been published, likely containing the URL or identifier of the newly created page along with any relevant metadata about the published dashboard.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "brand": {
   "type": "object",
   "description": "Optional agent branding {name,color,iconUrl}."
  },
  "label": {
   "type": "string",
   "description": "Optional page title, e.g. the user's name."
  },
  "vault": {
   "type": "string",
   "description": "The vault to publish a page for (0x…40 hex)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/liquid-agent-vault-page-publisher-92208757/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.liquidagent.ai](https://www.zero.xyz/host/api.liquidagent.ai/llms.txt)
