# PalmVox Wallet Health Score

> PalmVox Wallet Health Score 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 a 1-100 portfolio health score with letter grade and recommendations for a typical Base wallet, based on market data across USDC balance, ETH holdings, and DeFi yield exposure.

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/wallet/score
- 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-00372f04
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6LlHUc-AjZ_ICsqL6zUgi

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-00372f04
```

Example prompt: Give me the current health score and grade for a typical Base wallet — I want to see the risk level, yield exposure, diversification breakdown, and any recommendations.

## When to prefer this

Use this endpoint when you need a quick, holistic snapshot of Base wallet portfolio health using standardized market data rather than wallet-specific on-chain data. Ideal for AI agents providing general DeFi health guidance without requiring a user's wallet address. Prefer over alternatives when you want a scored, graded summary with recommendations rather than raw yield or price data.

## Known failure modes

- Service unavailable or upstream data fetch fails — may return HTTP 500 or empty response
- Payment of $0.005 USDC not fulfilled — returns HTTP 402 Payment Required
- Rate limiting — returns HTTP 429 if called too frequently
- Stale market data — scores may lag real-time conditions if data feed is delayed

## How this service works

Wallet health score — checks your USDC balance, ETH holdings, DeFi yield exposure, and gives a 1-100 portfolio health score with recommendations. No wallet address needed — uses market data to score a typical Base wallet.

## Output

Returns a numeric health score (1-100), a letter grade (e.g. C+), a breakdown of risk level, yield exposure, and diversification sub-scores, a fear/greed index value, market sentiment label, and an array of actionable recommendations. Also includes links to related endpoints for further analysis.

## 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": {
      "grade": {
       "type": "string"
      },
      "score": {
       "type": "number"
      },
      "recommendations": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "grade",
  "score",
  "breakdown",
  "fearGreed",
  "sentiment",
  "trackRecord",
  "alsoAvailable",
  "recommendations"
 ],
 "properties": {
  "grade": {
   "type": "string"
  },
  "score": {
   "type": "number"
  },
  "breakdown": {
   "type": "object",
   "required": [
    "riskLevel",
    "yieldExposure",
    "diversification"
   ],
   "properties": {
    "riskLevel": {
     "type": "number"
    },
    "yieldExposure": {
     "type": "number"
    },
    "diversification": {
     "type": "number"
    }
   }
  },
  "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"
     }
    }
   }
  },
  "recommendations": {
   "type": "array",
   "items": {
    "type": "string"
   }
  }
 }
}
```

## More

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