# PalmVox Top Trading Signal

> PalmVox Top Trading Signal is a paid API for AI agents from alpha.palmvox.com, paid per call via x402, $0.005/call, status down (last checked 2026-09-15).

Returns the single highest-confidence AI-generated trading signal with full analysis including entry price, stop loss, target price, and risk/reward ratio.

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/signals/top
- Price: $0.005/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-7752ded6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A6CZOftbKUlsdCc6_MAR9

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-7752ded6
```

Example prompt: What's the single best crypto trade right now — give me the top signal with entry price, stop loss, and target from PalmVox's composite scanner.

## When to prefer this

Use this endpoint when you need a single actionable trade recommendation with the highest confidence score available, including complete entry/exit parameters. Prefer this over /api/signals (which returns multiple signals at $0.01) when you only need one signal and want to minimize cost. Ideal for agents making automated trade decisions or surfacing one clear recommendation to a user.

## Known failure modes

- No signal available — market data feed may be unavailable or scanner returned no qualifying signals
- Payment required (402) — x402 micropayment of $0.005 USDC not completed or invalid
- Rate limiting — too many requests in a short window
- Stale data — signal timestamp may be older than expected if market data source is delayed
- Low confidence signals only — during low-volatility periods the top signal may only be MEDIUM confidence

## How this service works

Single highest-confidence trading signal with full analysis.

## Output

Returns a single JSON object containing the top-ranked trading signal with fields: signal ID, blockchain chain (e.g. 'base'), token ticker, a human-readable signal description (e.g. '+2.4% in 24h — momentum building'), confidence level (e.g. MEDIUM/HIGH), entry price, stop loss price, target price, risk/reward ratio, 24h volume change percentage, timestamp, and source scanner identifier. Also includes a link to the free track record endpoint and a list of other available endpoints with pricing.

## 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": {
      "signal": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "signal",
  "trackRecord",
  "alsoAvailable"
 ],
 "properties": {
  "signal": {
   "type": "object",
   "required": [
    "id",
    "chain",
    "token",
    "signal",
    "source",
    "stopLoss",
    "timestamp",
    "confidence",
    "entryPrice",
    "riskReward",
    "targetPrice",
    "volume24hChange"
   ],
   "properties": {
    "id": {
     "type": "string"
    },
    "chain": {
     "type": "string"
    },
    "token": {
     "type": "string"
    },
    "signal": {
     "type": "string"
    },
    "source": {
     "type": "string"
    },
    "stopLoss": {
     "type": "number"
    },
    "timestamp": {
     "type": "string"
    },
    "confidence": {
     "type": "string"
    },
    "entryPrice": {
     "type": "number"
    },
    "riskReward": {
     "type": "string"
    },
    "targetPrice": {
     "type": "number"
    },
    "volume24hChange": {
     "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-7752ded6/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)
