# MiniUp App Publish / Re-enable

> MiniUp App Publish / Re-enable is a paid API for AI agents from www.miniup.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Publishes or re-enables a MiniUp app owned by the paying wallet, making it live and accessible.

## Facts

- Endpoint: POST https://www.miniup.io/api/x402/apps/:siteId/publish
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/www-miniup-io-63e2a1ec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TlZ1mm3FvYzEnQwU5zVcX

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-63e2a1ec -d '<json body>'
```

Example prompt: Publish my MiniUp app with site ID 'abc123' so it's live and accessible to users.

## When to prefer this

Use this endpoint after creating, uploading, and finalizing all assets for a MiniUp app, or when re-enabling an app that was previously disabled or unpublished. It is the final step in the MiniUp app deployment pipeline.

## Known failure modes

- siteId not found or not owned by the paying wallet — returns 404 or 403
- wallet payment fails or insufficient USDC balance — returns 402
- app is already published — may return a no-op success or idempotent confirmation
- invalid siteId format — returns 400 validation error
- app assets incomplete or not finalized — publish may fail with dependency error

## How this service works

Publish or re-enable an app owned by the paying wallet.

## Output

A confirmation that the app has been published or re-enabled, along with updated app status information indicating the site is now live.

## 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-63e2a1ec/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)
