# Solana Intel Wallet Health Score

> Solana Intel Wallet Health Score is a paid API for AI agents from solana-app-production.up.railway.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns a health score for a Solana wallet address, assessing portfolio risk mix, verification status, and organic activity quality

## Facts

- Endpoint: GET https://solana-app-production.up.railway.app/wallet/:address/score
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solana-intel-wallet-health-score-b7213c1c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PKta0DGG3IuZ0op6NU6dR

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 solana-intel-wallet-health-score-b7213c1c
```

Example prompt: Can you check the wallet health score for the Solana address 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU — I want to know the portfolio risk mix, verification status, and how organic the activity looks?

## When to prefer this

Use this endpoint when you need a quick, scored risk assessment of a Solana wallet for due diligence, fraud detection, or trust evaluation purposes. Prefer this over raw on-chain data tools when you want a pre-computed health score rather than raw transaction data. Best for scenarios where you need to quickly triage wallet quality without building your own scoring model.

## Known failure modes

- Invalid or malformed Solana wallet address returns an error
- Wallet address not found or has no on-chain history may return null or zero scores
- Network or Railway hosting downtime may cause 5xx errors
- Rate limiting or payment failure (x402) may block the request

## How this service works

Wallet health score: portfolio risk mix, verification, organic quality

## Output

Returns a wallet health score for the given Solana address, including portfolio risk mix assessment, verification status, and an organic quality rating reflecting whether activity appears genuine versus bot-like or manipulated.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Solana wallet address (path parameter)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solana-intel-wallet-health-score-b7213c1c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from solana-app-production.up.railway.app](https://www.zero.xyz/host/solana-app-production.up.railway.app/llms.txt)
