# DePIN Wallet Portfolio Analyzer

> DePIN Wallet Portfolio Analyzer is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns hotspot count, subnetwork breakdown, geographic spread, token balances (HNT, IOT, MOBILE, DC), and diversification signals for a Helium DePIN operator or investor wallet.

## Facts

- Endpoint: GET https://payai.agentstools.dev/depin/wallet
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/depin-wallet-portfolio-analyzer-86e643c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_59FN_WOJzOGp7JDeg7HWz

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 depin-wallet-portfolio-analyzer-86e643c6
```

Example prompt: Can you pull up the full Helium DePIN portfolio for Solana wallet 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU — I want to see hotspot count, subnetwork breakdown, geographic spread, and all token balances like HNT, IOT, MOBILE, and DC?

## When to prefer this

Choose this endpoint when you need a single, aggregated DePIN portfolio view for a specific Solana wallet on the Helium network, including both on-chain token balances and hotspot deployment analytics with geographic and diversification signals. Prefer it over raw blockchain explorers when you want pre-computed concentration metrics and cited, structured output rather than raw transaction data.

## Known failure modes

- Invalid or malformed Solana wallet pubkey returns a validation error
- Wallet with no Helium activity returns zero hotspots and empty balances
- Network parameter value other than 'helium' is rejected
- Public blockchain data may lag real-time state by minutes
- Rate limiting or upstream Helium API outages may cause transient failures

## How this service works

Portfolio of a DePIN operator or investor wallet from public data. Give network (helium) and a Solana wallet pubkey and get the hotspot count, a breakdown by subnetwork, the geographic spread, token balances (HNT, IOT, MOBILE, DC) and computed signals for deployment diversification and concentration. Each value is cited.

## Output

A structured portfolio report for the given Solana wallet including: total hotspot count, per-subnetwork hotspot breakdown, geographic spread metrics, token balances for HNT, IOT, MOBILE, and DC, and computed signals for deployment diversification and concentration — each value cited to its public data source.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "wallet"
     ],
     "properties": {
      "wallet": {
       "type": "string",
       "description": "Solana wallet pubkey (base58, 32-44 chars)"
      },
      "network": {
       "enum": [
        "helium"
       ],
       "type": "string",
       "description": "DePIN network id (default helium)"
      }
     }
    }
   },
   "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/depin-wallet-portfolio-analyzer-86e643c6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
