# PalmVox Alpha Summary

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

Returns a one-line crypto market snapshot combining sentiment, top mover, fear/greed index, and action bias (BUY/SELL/HOLD)

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/alpha/summary
- Price: $0.003/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-e264b4e6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F1BAT44vTZ1o2QOwbbX4j

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

Example prompt: Give me a quick crypto market pulse — what's the current sentiment, fear/greed score, top mover, and whether I should be buying, selling, or holding right now.

## When to prefer this

Choose this endpoint when you need the absolute cheapest and fastest single-string crypto market overview — ideal for high-frequency agent polling, lightweight dashboards, or pre-trade context checks where a full analysis ($0.02) is overkill. Prefer over sibling endpoints when you only need a top-level sentiment + action bias without deep token analysis or DeFi yield data.

## Known failure modes

- Stale data if underlying market data feed is delayed or unavailable
- Payment failure if USDC balance is insufficient for the $0.003 x402 charge
- 503/502 if the AI inference or data aggregation backend is temporarily down
- Empty or null summary if market data sources return no signals

## How this service works

One-line market summary — sentiment, top mover, fear/greed, and action bias in a single string. Cheapest market intel on x402 at $0.003. Perfect for agents that need a quick pulse check.

## Output

A structured response with a single-line summary string (e.g. 'NEUTRAL (F&G 50) | SOL -1.8% | Action: HOLD'), plus fields: action (BUY/SELL/HOLD), fearGreed (0-100 number), sentiment (string), topToken (symbol), topChange (percentage string), signalCount, and a link to a free track record URL.

## 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": {
      "summary": {
       "type": "string"
      },
      "fearGreed": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "action",
  "summary",
  "topToken",
  "fearGreed",
  "sentiment",
  "topChange",
  "signalCount",
  "trackRecord",
  "alsoAvailable"
 ],
 "properties": {
  "action": {
   "type": "string"
  },
  "summary": {
   "type": "string"
  },
  "topToken": {
   "type": "string"
  },
  "fearGreed": {
   "type": "number"
  },
  "sentiment": {
   "type": "string"
  },
  "topChange": {
   "type": "string"
  },
  "signalCount": {
   "type": "number"
  },
  "trackRecord": {
   "type": "string"
  },
  "alsoAvailable": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "url",
     "note",
     "price"
    ],
    "properties": {
     "url": {
      "type": "string"
     },
     "note": {
      "type": "string"
     },
     "price": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

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