# PalmVox Alpha Agent Recommendation

> PalmVox Alpha Agent Recommendation is a paid API for AI agents from alpha.palmvox.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a specific buy/sell/hold trading action with token, position size, and AI reasoning based on live market signals and sentiment

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/agent/recommend
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alpha-palmvox-com-d105c55b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ULBQikeR1maN1yuhnH1J4

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

Example prompt: What should my crypto trading agent do right now — give me a specific buy, sell, or hold recommendation with the token, suggested position size, and your reasoning based on current market signals.

## When to prefer this

Use this endpoint when an autonomous trading agent needs a concrete, actionable trading recommendation (not just raw data) with AI-generated reasoning grounded in live signals. Prefer over raw market data endpoints when you need a decision, not just metrics. At $0.01 per call it is the mid-tier option — use the $0.001 market status endpoint for quick sentiment checks, and this endpoint when you need a full token + action + size recommendation.

## Known failure modes

- Payment not received — returns 402 Payment Required if x402 micropayment not provided
- Rate limit exceeded — too many calls in a short period
- Service temporarily unavailable — LLM or live data feed down
- Empty or stale market data — may return LOW confidence with HOLD recommendation

## How this service works

Agent-to-agent recommendation — what should your trading agent do RIGHT NOW? Returns specific buy/sell/hold actions with token, size, and reasoning based on live signals, sentiment, and our track record. Built for autonomous agents.

## Output

Returns a JSON object with: token (e.g. SOL), action (BUY/SELL/HOLD), reasoning (short explanation), confidence level (LOW/MEDIUM/HIGH), suggested position size as a percentage, fear/greed index, and market sentiment. Also includes a link to the free track record endpoint and pointers to related premium endpoints.

## 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": {
      "token": {
       "type": "string"
      },
      "action": {
       "type": "string"
      },
      "reasoning": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "token",
  "action",
  "reasoning",
  "confidence",
  "trackRecord",
  "alsoAvailable",
  "marketContext",
  "suggestedSize"
 ],
 "properties": {
  "token": {
   "type": "string"
  },
  "action": {
   "type": "string"
  },
  "reasoning": {
   "type": "string"
  },
  "confidence": {
   "type": "string"
  },
  "trackRecord": {
   "type": "string"
  },
  "alsoAvailable": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "url",
     "price"
    ],
    "properties": {
     "url": {
      "type": "string"
     },
     "price": {
      "type": "string"
     }
    }
   }
  },
  "marketContext": {
   "type": "object",
   "required": [
    "fearGreed",
    "sentiment"
   ],
   "properties": {
    "fearGreed": {
     "type": "number"
    },
    "sentiment": {
     "type": "string"
    }
   }
  },
  "suggestedSize": {
   "type": "string"
  }
 }
}
```

## More

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