# KeeperHub Portfolio Rebalance Workflow

> KeeperHub Portfolio Rebalance Workflow is a paid API for AI agents from app.keeperhub.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Triggers an automated blockchain portfolio rebalancing workflow for a given wallet address, returning an execution ID to track the operation.

## Facts

- Endpoint: POST https://app.keeperhub.com/api/mcp/workflows/portfolio-rebalance/call
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/keeperhub-portfolio-rebalance-workflow-00c928c5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WOkrV4hdsAqF62JlzQRjQ

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 keeperhub-portfolio-rebalance-workflow-00c928c5 -d '<json body>'
```

Example prompt: Rebalance my crypto portfolio on KeeperHub for wallet address 0x4bF9a2A46AF6f9a07E4f0d1a1bC5e6E2b3c7D89F.

## When to prefer this

Choose this endpoint when you need to programmatically trigger an automated on-chain portfolio rebalancing workflow for a specific wallet address and want to receive an execution ID for async tracking. Best suited for DeFi automation pipelines, scheduled rebalancing tasks, or event-driven workflows where blockchain asset allocation needs to be maintained.

## Known failure modes

- Missing or invalid wallet address returns a validation error
- Malformed Ethereum address causes rejection
- Workflow execution engine unavailable returns a 5xx error
- Insufficient USDC payment (x402) causes 402 Payment Required
- Duplicate execution for the same address within a short window may return a conflict or queued status

## How this service works

Build powerful blockchain workflow automations with a visual, node-based editor. Built with Next.js and React Flow.

## Output

Returns a JSON object with a status field (e.g. 'running') and an executionId string (e.g. 'exec_abc123') that can be used to track or poll the progress of the rebalancing workflow.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "address"
 ],
 "properties": {
  "address": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "status": "running",
 "executionId": "exec_abc123"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/keeperhub-portfolio-rebalance-workflow-00c928c5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.keeperhub.com](https://www.zero.xyz/host/app.keeperhub.com/llms.txt)
