# PalmVox Alpha Premium Market Briefing

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

Returns an executive crypto market briefing with top 3 trading signals, sentiment summary, fear/greed index, and a concise actionable recommendation optimized for agent consumption.

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/premium/briefing
- Price: $0.03/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-edc38809
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GMEp-RkPJjjKeSYlyjAtK

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

Example prompt: Give me the current premium crypto market briefing — top signals with entry, stop, and target levels for BTC, ETH, and SOL, plus the overall sentiment and whether I should buy, sell, or hold right now.

## When to prefer this

Choose this endpoint when an agent needs a fast, premium-grade, multi-dimensional crypto market snapshot — combining sentiment, specific entry/stop/target trading signals for top assets, and an explicit action recommendation — in a single call. Prefer over the free one-line summary when richer structured signal data with entry/exit levels and confidence ratings are needed for decision-making.

## Known failure modes

- Payment not provided or insufficient USDC — 402 Payment Required
- Service temporarily unavailable or LLM generation failure — 500 Internal Server Error
- Data provider (DexScreener, news feed) unavailable causing stale or missing signals
- Response may contain cached data if market data hasn't refreshed within the 30-minute cycle

## How this service works

PREMIUM: Executive market briefing — top 3 signals, sentiment summary, key news, and actionable recommendation in a concise format optimized for agent consumption.

## Output

Returns a structured briefing with: overall sentiment score and label, a one-line briefing string, a recommended action (BUY/SELL/HOLD), the fear/greed index, the last update timestamp, active signal count, performance stats (win rate, streak, total signals), and an array of up to 3 top signals each containing token symbol, price change percentage, entry price, stop loss, price target, and confidence level.

## 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": {
      "action": {
       "type": "string"
      },
      "briefing": {
       "type": "string"
      },
      "topSignals": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "tier",
  "action",
  "briefing",
  "sentiment",
  "timestamp",
  "topSignals",
  "lastUpdated",
  "performance",
  "activeSignals",
  "fearGreedIndex"
 ],
 "properties": {
  "tier": {
   "type": "string"
  },
  "action": {
   "type": "string"
  },
  "briefing": {
   "type": "string"
  },
  "sentiment": {
   "type": "string"
  },
  "timestamp": {
   "type": "string"
  },
  "topSignals": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "stop",
     "entry",
     "token",
     "change",
     "target",
     "confidence"
    ],
    "properties": {
     "stop": {
      "type": "number"
     },
     "entry": {
      "type": "number"
     },
     "token": {
      "type": "string"
     },
     "change": {
      "type": "string"
     },
     "target": {
      "type": "number"
     },
     "confidence": {
      "type": "string"
     }
    }
   }
  },
  "lastUpdated": {
   "type": "string"
  },
  "performance": {
   "type": "object",
   "required": [
    "streak",
    "winRate",
    "totalSignals"
   ],
   "properties": {
    "streak": {
     "type": "number"
    },
    "winRate": {
     "type": "number"
    },
    "totalSignals": {
     "type": "number"
    }
   }
  },
  "activeSignals": {
   "type": "number"
  },
  "fearGreedIndex": {
   "type": "number"
  }
 }
}
```

## More

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