# PalmVox Market One-Liner

> PalmVox Market One-Liner is a paid API for AI agents from alpha.palmvox.com, paid per call via x402, $0.001/call, status down (last checked 2026-09-16).

Returns a single-string crypto market summary including sentiment label, fear/greed index score, and top mover in one compact line

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/market/oneliner
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alpha-palmvox-com-21db3c51
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YT0sAL00qGlLva6dpdwEe

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-21db3c51
```

Example prompt: Give me a one-line crypto market snapshot right now — just the sentiment, fear/greed score, and top mover in a single line.

## When to prefer this

Use this endpoint when you need the fastest, cheapest possible snapshot of crypto market conditions — ideal for agents that need a quick sentiment check before making a decision, displaying a market ticker, or routing to a more expensive analysis endpoint only when conditions warrant it. At $0.001 it is the lowest-cost entry point for any crypto market awareness task.

## Known failure modes

- Upstream data source unavailable — may return stale or error response
- Payment not processed — x402 payment required before response is delivered
- Rate limit or network timeout from live data feed

## How this service works

Cheapest endpoint on x402 — $0.001 for a one-line market status. Returns sentiment, fear/greed, and top mover in a single string. Gateway endpoint — try us for a penny.

## Output

A single string like 'Neutral (50) — SOL -1.8%' combining the market sentiment label, numerical fear/greed index score (0-100), and the top-moving token with its percentage change. Also returns parsed fields for fearGreed (number), sentiment (string), and links to sibling endpoints for deeper data.

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "oneliner",
  "fearGreed",
  "sentiment",
  "trackRecord",
  "alsoAvailable"
 ],
 "properties": {
  "oneliner": {
   "type": "string"
  },
  "fearGreed": {
   "type": "number"
  },
  "sentiment": {
   "type": "string"
  },
  "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-21db3c51/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)
