# PalmVox Crypto Risk Assessment

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

Returns a comprehensive crypto market risk assessment including fear/greed index, volatility level, risk-on/risk-off bias, and recommended position sizing.

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/risk/assessment
- Price: $0.01/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-44be27d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HziBXPU6XxWC7QoPweGEK

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-44be27d3
```

Example prompt: What's the current crypto market risk assessment — is the market risk-on or risk-off, what's the fear/greed score, and how large should my positions be right now?

## When to prefer this

Choose this endpoint when a portfolio management or trading agent needs a full risk context snapshot before executing trades — combining fear/greed, volatility, bias, and position sizing in a single call. Prefer over the cheaper /api/fear-greed endpoint when you need the full risk picture including position sizing recommendations, not just sentiment.

## Known failure modes

- Service temporarily unavailable — 5xx error if the upstream data provider is down
- Payment required — 402 if x402 micropayment not included or insufficient
- Stale data — lastUpdated timestamp may lag if market data feed is delayed
- Rate limiting — repeated calls in short succession may be throttled

## How this service works

Crypto market risk assessment — fear/greed index, volatility level, recommended position sizing, and risk-on/risk-off bias. Essential for portfolio management agents.

## Output

Returns a JSON object with: bias (risk-on/risk-off/neutral), fearGreed (numeric index), riskLevel (low/moderate/high), sentiment, volatility level, max recommended position size percentage, recommendation string, and a lastUpdated timestamp.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 },
 "output": {
  "type": "object",
  "example": {
   "bias": "risk-on",
   "fearGreed": 50,
   "riskLevel": "moderate"
  }
 }
}
```

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "bias",
  "fearGreed",
  "riskLevel",
  "sentiment",
  "volatility",
  "lastUpdated",
  "trackRecord",
  "alsoAvailable",
  "recommendation",
  "maxPositionSize"
 ],
 "properties": {
  "bias": {
   "type": "string"
  },
  "fearGreed": {
   "type": "number"
  },
  "riskLevel": {
   "type": "string"
  },
  "sentiment": {
   "type": "string"
  },
  "volatility": {
   "type": "string"
  },
  "lastUpdated": {
   "type": "string"
  },
  "trackRecord": {
   "type": "string"
  },
  "alsoAvailable": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "url",
     "price"
    ],
    "properties": {
     "url": {
      "type": "string"
     },
     "price": {
      "type": "string"
     }
    }
   }
  },
  "recommendation": {
   "type": "string"
  },
  "maxPositionSize": {
   "type": "string"
  }
 }
}
```

## More

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