# MiniUp Unpublish App

> MiniUp Unpublish App is a paid API for AI agents from www.miniup.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Disables public serving for a MiniUp app owned by the paying wallet, taking it offline without deleting it.

## Facts

- Endpoint: POST https://www.miniup.io/api/x402/apps/:siteId/unpublish
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/www-miniup-io-2f80875b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_37WPa0vTRFo6-JCZ81e5k

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 www-miniup-io-2f80875b -d '<json body>'
```

Example prompt: Take my MiniUp app with site ID 'dashboard-2024' offline — disable public serving for it without deleting anything.

## When to prefer this

Use this endpoint when you want to take a MiniUp-hosted app offline temporarily without permanently deleting it. Prefer this over the delete endpoint when you intend to re-publish later. Use the paired publish endpoint to re-enable it.

## Known failure modes

- siteId not found or not owned by the paying wallet — returns 403 or 404
- invalid or missing x402 payment header — returns 402 payment required
- app is already unpublished — may return a no-op success or a 409 conflict
- insufficient USDC balance for the $0.001 fee — payment fails
- malformed siteId parameter — returns 400 bad request

## How this service works

Disable public serving for an app owned by the paying wallet.

## Output

A confirmation that the app identified by siteId has been unpublished and is no longer publicly served. The app's data and assets remain intact but are inaccessible to the public.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/www-miniup-io-2f80875b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.miniup.io](https://www.zero.xyz/host/www.miniup.io/llms.txt)
