# PalmVox Crypto News with Sentiment & Market Impact

> PalmVox Crypto News with Sentiment & Market Impact is a paid API for AI agents from alpha.palmvox.com, paid per call via x402, $0.005000/call, status down (last checked 2026-09-15).

Returns the latest crypto news headline enriched with sentiment analysis and market impact assessment, updated every 2 hours from top sources.

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/crypto/news
- Price: $0.005000/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-ee5daac9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aSRnY3XS7Z--jhOl_hw-9

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

Example prompt: What's the latest breaking crypto news headline right now, and is it bullish or bearish — what's the market impact?

## When to prefer this

Use this endpoint when you need a fast, single-call snapshot of the most impactful crypto news headline plus its sentiment and market impact — ideal for AI agents that need a quick market pulse without ingesting a full news feed. Prefer this over raw news APIs when pre-computed sentiment and impact scoring is needed out of the box.

## Known failure modes

- No recent news available — stale or empty response if data pipeline is lagging beyond 2-hour cycle
- Payment required (402) if x402 payment header is missing or USDC balance is insufficient
- Rate limiting or service unavailability returning 5xx errors
- Partial response if sentiment model fails to classify the headline

## How this service works

Latest crypto news headline with sentiment analysis and market impact assessment. Breaking news from top sources, updated every 2 hours.

## Output

Returns the most recent crypto news headline along with a sentiment classification (e.g. bullish/bearish/neutral) and a market impact assessment indicating the significance or direction of the news on crypto markets. Data is refreshed every 2 hours from top news sources.

## 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": {
      "impact": {
       "type": "string"
      },
      "headline": {
       "type": "string"
      },
      "sentiment": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

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