# Kiln Publish Page Takedown

> Kiln Publish Page Takedown 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).

Takes down (removes) a previously published ephemeral page by its ID with a stated reason.

## Facts

- Endpoint: POST https://page.fluidrack.com/v1/pages/%7Bid%7D/takedown
- 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/kiln-publish-page-takedown-98819dbe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EtVW2v8guJi3xD8ZhYacC

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 kiln-publish-page-takedown-98819dbe -d '<json body>'
```

Example prompt: Take down the Kiln ephemeral page with ID 'abc123' — the reason is that the campaign it was created for has ended and the content is no longer relevant.

## When to prefer this

Use this endpoint when you need to programmatically remove or unpublish a specific ephemeral page previously created via Kiln Publish on Fluidrack, especially in automated agent workflows where content has a defined lifecycle. Prefer this over manual deletion when integrating takedown into pipelines that handle content expiry, error recovery, or post-task cleanup.

## Known failure modes

- Page ID not found — returns error if the ID does not correspond to an existing page
- Reason string too short — returns validation error if reason is under 10 characters
- Page already taken down — may return an error or idempotent success if the page was previously removed
- Unauthorized — if the caller does not have permission to take down the specified page
- Payment failure — x402 payment of $0.01 USDC not completed, request rejected

## How this service works

Ephemeral publish pages for AI agents.

## Output

A confirmation that the specified ephemeral page has been taken down and is no longer publicly accessible, along with the updated status of the page resource.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string"
  },
  "reason": {
   "type": "string",
   "minLength": 10
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kiln-publish-page-takedown-98819dbe/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)
