# DePIN Wallet Portfolio Analyzer (Helium)

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

Returns a full portfolio breakdown for a Solana wallet on the Helium DePIN network, including hotspot count, subnetwork allocation, geographic spread, token balances, and deployment diversification signals.

## Facts

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

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-helium-2a3c11c1
```

Example prompt: Can you pull the full Helium DePIN portfolio for this Solana wallet — 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU — including hotspot count, subnetwork breakdown, geographic spread, and token balances like HNT, IOT, and MOBILE?

## When to prefer this

Choose this endpoint when you need a comprehensive, cited DePIN portfolio view for a specific Helium network wallet — especially when you need both on-chain token balances and deployment analytics (hotspot counts, geographic spread, subnetwork allocation) in a single call rather than querying multiple Helium or Solana APIs separately.

## Known failure modes

- Invalid or malformed Solana wallet pubkey returns a 400 or validation error
- Wallet with no Helium activity returns zero hotspots and empty balances
- Network parameter outside 'helium' enum rejected
- Helium on-chain data temporarily unavailable causes upstream timeout
- Payment not processed results in 402 response

## 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 cited JSON object containing: total hotspot count, per-subnetwork breakdown (e.g. IOT, MOBILE), geographic spread of deployed hotspots, token balances for HNT, IOT, MOBILE, and DC, and computed signals for deployment diversification and geographic concentration — each value sourced with citations.

## 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-helium-2a3c11c1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
