# PalmVox Base Network Overview

> PalmVox Base Network Overview 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 live prices for AERO, DEGEN, and ETH on Base, current network TPS, gas price, and top DeFi yields in a single call.

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/base/overview
- 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-3fee5507
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZyIRfDFEDdbOjvc1XSuVJ

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-3fee5507
```

Example prompt: Give me a live snapshot of the Base network right now — I want current prices for ETH, DEGEN, and AERO, what the network TPS looks like, gas price, and any top DeFi yields available.

## When to prefer this

Use this endpoint when you need a comprehensive Base network snapshot in a single call rather than querying prices, gas, and yields separately. Ideal for Base-native agents that need a quick situational overview before making trading or yield decisions. Prefer this over sibling endpoints when you want multiple data dimensions at once rather than a focused single metric.

## Known failure modes

- Upstream price feeds unavailable — stale or missing token price data
- Base network RPC issues causing TPS or gas data to be absent
- HTTP 402 if payment header not included or payment fails
- Response may be delayed if DeFi yield aggregator is slow
- Partial data returned if one data source (e.g. DexScreener) is temporarily down

## How this service works

Base network overview — live prices for AERO, DEGEN, ETH on Base, network TPS, gas price, and top DeFi yields. Everything a Base-native agent needs.

## Output

Returns a JSON object with live token prices (AERO, DEGEN, ETH) on Base, current network TPS, gas price, and top DeFi yield opportunities — all in a single aggregated response.

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

## More

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