# PalmVox AI Market Analysis

> PalmVox AI Market Analysis 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-15).

Returns a 150-word AI-generated crypto market analysis with sentiment, top signals, DeFi yields, and an actionable buy/sell recommendation, updated every 30 minutes.

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/ai/analysis
- Price: $0.02/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-c7af7f1c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m-plOl3OLghyQxJkuyBaI

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

Example prompt: Give me the latest AI-generated crypto market analysis — I want to know the current sentiment, any standout DeFi yields, and whether the recommendation is to buy or hold right now.

## When to prefer this

Choose this endpoint when you need a concise, ready-to-use narrative market briefing grounded in live data, rather than raw price feeds or charts. It is ideal for agents that need a single call to get sentiment + yield signals + a recommendation without aggregating multiple data sources themselves. Prefer it over the premium briefing ($0.03) when a 150-word snapshot is sufficient, and over the one-line summary when you need richer detail including yield mentions.

## Known failure modes

- Live data feed unavailable — LLM may fall back to stale or cached data
- Rate limiting if called more frequently than the 30-minute refresh window
- $0.02 USDC x402 payment failure — agent must handle 402 payment required response
- Truncated analysis if LLM output is shorter than expected due to model timeout
- Invalid response shape if upstream market data APIs are down

## How this service works

AI-generated market analysis written by a local LLM using live data. Unique, original 150-word analysis with sentiment, top signals, yields, and actionable recommendation. Updated every 30 minutes. Zero hallucination — grounded in real market data.

## Output

A structured JSON object containing: a ~150-word original AI-written market analysis string, a sentiment label (e.g. 'neutral'), an ISO timestamp of when it was generated, and an actionable recommendation string (e.g. 'BUY with focus on Aave yields on Ethereum'). Also includes a link to a free track record endpoint.

## 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": {
      "analysis": {
       "type": "string"
      },
      "sentiment": {
       "type": "string"
      },
      "generatedAt": {
       "type": "string"
      },
      "recommendation": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "model",
  "analysis",
  "sentiment",
  "generatedAt",
  "trackRecord",
  "alsoAvailable",
  "fearGreedIndex",
  "recommendation"
 ],
 "properties": {
  "model": {
   "type": "string"
  },
  "analysis": {
   "type": "string"
  },
  "sentiment": {
   "type": "string"
  },
  "generatedAt": {
   "type": "string"
  },
  "trackRecord": {
   "type": "string"
  },
  "alsoAvailable": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "url",
     "price"
    ],
    "properties": {
     "url": {
      "type": "string"
     },
     "price": {
      "type": "string"
     }
    }
   }
  },
  "fearGreedIndex": {
   "type": "number"
  },
  "recommendation": {
   "type": "string"
  }
 }
}
```

## More

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