# PalmVox AI Model Portfolio Allocation

> PalmVox AI Model Portfolio Allocation is a paid API for AI agents from alpha.palmvox.com, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Returns an AI-generated model portfolio allocation across Base ecosystem tokens based on live market conditions, sentiment, and risk analysis.

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/portfolio/model
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alpha-palmvox-com-93889ca3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dZ4B7ltlANc1yGI97wG8O

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 alpha-palmvox-com-93889ca3
```

Example prompt: What's the current AI-recommended model portfolio allocation for Base ecosystem tokens — show me the full breakdown with percentages, tokens, and the risk profile based on today's market conditions.

## When to prefer this

Use this endpoint when an agent needs a ready-made, AI-generated model portfolio allocation grounded in live market data for Base ecosystem tokens, rather than building a custom allocation from scratch or scraping individual price feeds. Ideal for agents that need a single opinionated allocation recommendation with risk profile context without requiring user-supplied parameters.

## Known failure modes

- Live market data unavailable — returns stale or cached allocation with degraded confidence
- Upstream sentiment/fear-greed feed timeout — may return partial market context
- API returns 402 Payment Required if x402 payment of $0.01 USDC is not provided
- Malformed response if Base ecosystem token data feed is interrupted

## How this service works

AI-generated model portfolio allocation for Base ecosystem tokens based on current market conditions and risk analysis.

## Output

Returns a JSON object with an allocation array (each entry has token name, percentage, and rationale), a risk profile string (e.g. 'moderate'), market context (sentiment label and fear/greed index number), last rebalanced timestamp, and rebalance frequency.

## Example request

```json
{
 "query": "{\\\"input\\\": {\\\"type\\\": \\\"http\\\", \\\"method\\\": \\\"GET\\\", \\\"queryParams\\\": {}}}"
}
```

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "allocation": {
       "type": "array"
      },
      "riskProfile": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "note",
  "allocation",
  "riskProfile",
  "marketContext",
  "lastRebalanced",
  "rebalanceFrequency"
 ],
 "properties": {
  "note": {
   "type": "string"
  },
  "allocation": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "pct",
     "token",
     "reason"
    ],
    "properties": {
     "pct": {
      "type": "number"
     },
     "token": {
      "type": "string"
     },
     "reason": {
      "type": "string"
     }
    }
   }
  },
  "riskProfile": {
   "type": "string"
  },
  "marketContext": {
   "type": "object",
   "required": [
    "sentiment",
    "fearGreedIndex"
   ],
   "properties": {
    "sentiment": {
     "type": "string"
    },
    "fearGreedIndex": {
     "type": "number"
    }
   }
  },
  "lastRebalanced": {
   "type": "string"
  },
  "rebalanceFrequency": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alpha-palmvox-com-93889ca3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from alpha.palmvox.com](https://www.zero.xyz/host/alpha.palmvox.com/llms.txt)
