# PalmVox Alpha Strategy Recommendation

> PalmVox Alpha Strategy Recommendation is a paid API for AI agents from alpha.palmvox.com, paid per call via x402, $0.02/call, status down (last checked 2026-09-16).

Returns an AI-generated trading strategy recommending what to buy, sell, or hold across crypto and DeFi based on live market conditions, sentiment signals, and current DeFi yields.

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/strategy
- Price: $0.02/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alpha-palmvox-com-dcddf841
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lXksZpRm-l3CP0ZNID-Ee

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-dcddf841
```

Example prompt: What's the current AI trading strategy for crypto — which assets should I long or short right now, and are there any high-yield DeFi opportunities to act on?

## When to prefer this

Use this endpoint when you need a fully synthesized, actionable multi-asset trading strategy in a single call rather than assembling individual signals, sentiment scores, and yield data yourself. Prefer it over /api/signals (single signal only) or /api/base/overview (Base-only DEX data) when you want a holistic recommendation covering spot crypto and DeFi yields simultaneously.

## Known failure modes

- Live market data unavailable — strategy may be stale or endpoint returns error
- LLM generation failure — no strategy object returned
- Rate limiting or payment failure due to x402 protocol issues
- Empty positions array if no actionable signals are present
- Fear/greed index feed outage causing degraded recommendations

## How this service works

AI trading strategy recommendation — what to buy, sell, or hold right now based on live market conditions, sentiment, signals, and DeFi yields. Actionable output for autonomous trading agents.

## Output

Returns a named strategy (e.g. 'Neutral Buy Wave') with specific positions for BTC, ETH, SOL and DeFi tokens, including directional bias (long/short), expected move percentage, risk level ratios, and the underlying market conditions (fear/greed score, sentiment label, active signal count) that drove the recommendation.

## Example request

```json
{
 "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": {
      "strategy": {
       "type": "string"
      },
      "positions": {
       "type": "array"
      },
      "riskLevel": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "strategy",
  "conditions",
  "trackRecord",
  "alsoAvailable"
 ],
 "properties": {
  "strategy": {
   "type": "string"
  },
  "conditions": {
   "type": "object",
   "required": [
    "fearGreed",
    "sentiment",
    "activeSignals"
   ],
   "properties": {
    "fearGreed": {
     "type": "number"
    },
    "sentiment": {
     "type": "string"
    },
    "activeSignals": {
     "type": "number"
    }
   }
  },
  "trackRecord": {
   "type": "string"
  },
  "alsoAvailable": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "url",
     "price"
    ],
    "properties": {
     "url": {
      "type": "string"
     },
     "price": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alpha-palmvox-com-dcddf841/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)
