# PalmVox Alpha Token Screener

> PalmVox Alpha Token Screener 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).

Filters active crypto trading signals by confidence level, price direction, and chain, returning matching signals with full entry/exit data.

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/screener
- 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-74f1aaf6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EnoAkw0SSYNhP71NzOFX3

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-74f1aaf6
```

Example prompt: Can you pull all HIGH confidence upward trading signals on the Base chain from PalmVox Alpha's screener right now?

## When to prefer this

Use this endpoint when you need to browse and filter a set of active trading signals across multiple tokens simultaneously, rather than fetching a single best signal. Ideal when the user wants to narrow signals by confidence tier, directional bias, or specific chain before acting.

## Known failure modes

- Invalid confidence value (not HIGH/MEDIUM/LOW) may return empty results or error
- Invalid direction value may return no results
- Chain not supported returns empty token list
- Payment of $0.005 USDC not provided results in 402 Payment Required
- No signals matching the filter criteria returns empty tokens array with count 0

## How this service works

Token screener — filter active signals by confidence (HIGH/MEDIUM/LOW), direction (up/down), or chain (base). Returns matching signals with full data. Query params: confidence, direction, chain.

## Output

Returns a list of matching trading signals, each with token symbol, entry price, target price, stop loss, risk/reward ratio, confidence level, 24h volume change, signal description, source, chain, and timestamp. Also includes a count of matching results.

## Example request

```json
{
 "query": "{\\\"input\\\": {\\\"type\\\": \\\"http\\\", \\\"method\\\": \\\"GET\\\", \\\"queryParams\\\": {\\\"confidence\\\": \\\"HIGH\\\", \\\"direction\\\": \\\"up\\\", \\\"chain\\\": \\\"base\\\"}}}"
}
```

## 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": {
      "tokens": {
       "type": "array"
      },
      "filters": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "count",
  "tokens",
  "filters",
  "trackRecord",
  "alsoAvailable",
  "totalAvailable"
 ],
 "properties": {
  "count": {
   "type": "number"
  },
  "tokens": {
   "type": "array",
   "items": {
    "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"
     }
    }
   }
  },
  "filters": {
   "type": "object",
   "required": [
    "chain",
    "direction",
    "confidence"
   ],
   "properties": {
    "chain": {
     "type": "string"
    },
    "direction": {
     "type": "string"
    },
    "confidence": {
     "type": "string"
    }
   }
  },
  "trackRecord": {
   "type": "string"
  },
  "alsoAvailable": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "url",
     "price"
    ],
    "properties": {
     "url": {
      "type": "string"
     },
     "price": {
      "type": "string"
     }
    }
   }
  },
  "totalAvailable": {
   "type": "number"
  }
 }
}
```

## More

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