# PalmVox Daily Crypto Market Digest

> PalmVox Daily Crypto Market Digest 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 an AI-written ~300-word daily crypto market analysis covering prices, sentiment, DeFi yields, whale activity, and actionable recommendations

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/daily/digest
- 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-acfa49af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8_gtZFg_YosyWo5DH-2BT

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

Example prompt: Give me today's crypto market digest — I want the full AI-written analysis with prices, DeFi yields, sentiment, and any actionable buy/sell recommendations.

## When to prefer this

Choose this endpoint when you need a comprehensive, human-readable narrative daily crypto market summary with actionable context rather than raw price data. Ideal for morning briefings, daily agent summaries, or when a user wants a holistic view of crypto markets including DeFi yields, sentiment, and signals in one call. Better than individual price or sentiment endpoints when you want everything in one readable digest.

## Known failure modes

- Digest may not yet be updated for the current day if called very early (stale date returned)
- LLM generation failure could return an incomplete or truncated digest
- Network or payment (x402) authentication failure returns 402 status
- Rate limiting or service unavailability returns 5xx error

## How this service works

AI-written daily crypto market digest — 300 word original analysis covering prices, sentiment, DeFi yields, whale activity, and actionable recommendations. Written by local LLM using live data. Updated daily.

## Output

A date-stamped, AI-written ~300-word market digest covering top cryptocurrency price movements, Fear & Greed Index, DeFi yield opportunities across platforms like Aave and Compound, whale activity signals, and concrete actionable trading recommendations for the day.

## 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": {
      "date": {
       "type": "string"
      },
      "digest": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "date",
  "digest",
  "trackRecord",
  "alsoAvailable"
 ],
 "properties": {
  "date": {
   "type": "string"
  },
  "digest": {
   "type": "string"
  },
  "trackRecord": {
   "type": "string"
  },
  "alsoAvailable": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "url",
     "price"
    ],
    "properties": {
     "url": {
      "type": "string"
     },
     "price": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

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