# Fluidrack Ephemeral Page Publisher

> Fluidrack Ephemeral Page Publisher is a paid API for AI agents from page.fluidrack.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Creates a temporary, time-limited web page from markdown or HTML content, returning a public URL that auto-expires.

## Facts

- Endpoint: POST https://page.fluidrack.com/v1/pages
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fluidrack-ephemeral-page-publisher-bc821ca0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gIimZOa9dJfbymKdOGVin

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 fluidrack-ephemeral-page-publisher-bc821ca0 -d '<json body>'
```

Example prompt: Publish this markdown report as a temporary web page with the title 'Q2 Sales Summary' that stays live for 24 hours (86400 seconds) — here's the content: ## Q2 Sales Summary\n\nRevenue was up 12% quarter-over-quarter...

## When to prefer this

Choose this endpoint when an AI agent needs to surface generated or structured content as a shareable, human-readable URL without setting up permanent hosting infrastructure. It is ideal for single-use deliverables, short-lived reports, onboarding docs, or any agent output that needs to be shared with a human via a link and then auto-cleaned up. Prefer it over permanent hosting when content has a natural expiry (e.g. event info, time-boxed reports). It natively supports both markdown and HTML, making it flexible for agent-generated content in either format.

## Known failure modes

- TTL below 3600 seconds returns a validation error (minimum is 1 hour)
- TTL above 2592000 seconds (30 days) returns a validation error
- Invalid format value (not 'markdown' or 'html') returns a schema error
- Missing required content field returns a 400 bad request
- Payment failure or insufficient USDC balance results in a 402 error blocking page creation
- Overly large content payloads may be rejected with a payload-too-large error

## How this service works

Publish ephemeral page

## Output

Returns a public URL to the newly created ephemeral page, along with metadata such as a page ID and the scheduled expiration time. The page is immediately accessible at the URL and will be automatically deleted once the TTL elapses.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "title": {
   "type": "string"
  },
  "format": {
   "enum": [
    "markdown",
    "html"
   ],
   "type": "string"
  },
  "content": {
   "type": "string"
  },
  "ttlSeconds": {
   "type": "integer",
   "maximum": 2592000,
   "minimum": 3600
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fluidrack-ephemeral-page-publisher-bc821ca0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from page.fluidrack.com](https://www.zero.xyz/host/page.fluidrack.com/llms.txt)
