# PalmVox DEX Prices — Live Base Token Price Feed

> PalmVox DEX Prices — Live Base Token Price Feed is a paid API for AI agents from alpha.palmvox.com, paid per call via x402, $0.003/call, status down (last checked 2026-09-15).

Returns live DEX prices for top Base chain tokens (ETH, AERO, DEGEN, etc.) with 24h change, volume, and liquidity data sourced from DexScreener

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/dex/prices
- Price: $0.003/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-b3c8c055
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__9eN2m7eUtaB8XNQJYhuH

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

Example prompt: What are the current prices for the top Base chain tokens — ETH, AERO, and DEGEN — including their 24-hour price change and trading volume?

## When to prefer this

Choose this endpoint when you need a cheap, real-time multi-token price feed specifically for Base chain tokens sourced from DEX markets rather than centralized exchanges. At $0.003 per call it is one of the lowest-cost on-chain price feeds available. Prefer this over general crypto price APIs when Base ecosystem coverage (ETH, AERO, DEGEN) and DEX-native liquidity/volume data matter, or when operating within the x402 micropayment ecosystem.

## Known failure modes

- DexScreener upstream unavailable — stale or missing price data
- Low confidence scores on returned prices indicating thin liquidity or sparse trade data
- Payment failure via x402 protocol — call not executed
- Empty prices array if no tokens are currently indexed
- Network timeout resulting in no response

## How this service works

Live DEX prices for top Base tokens from DexScreener — ETH, AERO, DEGEN and more with 24h change, volume, and liquidity. Cheapest multi-token price feed on x402.

## Output

Returns a JSON array of token price objects, each containing the token symbol, chain (base), current USD price, 24h percentage change, and a confidence rating. Also includes the data source (composite from x402factory + DexScreener), total count, last updated timestamp, and links to related endpoints.

## 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": {
      "count": {
       "type": "number"
      },
      "prices": {
       "type": "array"
      },
      "source": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "count",
  "prices",
  "source",
  "lastUpdated",
  "trackRecord",
  "alsoAvailable"
 ],
 "properties": {
  "count": {
   "type": "number"
  },
  "prices": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "chain",
     "price",
     "token",
     "change24h",
     "confidence"
    ],
    "properties": {
     "chain": {
      "type": "string"
     },
     "price": {
      "type": "number"
     },
     "token": {
      "type": "string"
     },
     "change24h": {
      "type": "string"
     },
     "confidence": {
      "type": "string"
     }
    }
   }
  },
  "source": {
   "type": "string"
  },
  "lastUpdated": {
   "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-b3c8c055/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)
