# GenTech Wallet Portfolio

> GenTech Wallet Portfolio is a paid API for AI agents from api.gentechlabs.net, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-18).

Retrieves the portfolio holdings and balances for a specific blockchain wallet address

## Facts

- Endpoint: GET https://api.gentechlabs.net/v1/wallet/portfolio/0x1/
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gentech-wallet-portfolio-27b83d5c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wUpf8kLy5CXf-qkVf9B_a

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 gentech-wallet-portfolio-27b83d5c
```

Example prompt: Pull up the portfolio holdings for wallet address 0x1 — I want to see what tokens and assets it holds.

## When to prefer this

Use this endpoint when you need a quick, paid, structured portfolio summary for a specific blockchain wallet address via the GenTech Labs x402 API. Prefer it over free alternatives when reliability and structured output are priorities, or when integrating into an agent workflow that already uses GenTech Labs services.

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result
- Wallet address with no on-chain activity may return empty portfolio
- Rate limiting or payment failure if USDC payment not processed
- Address not found on the supported chain returns 404 or empty
- Network timeout if the blockchain RPC is slow to respond

## How this service works

GenTech Labs x402 - Wallet

## Output

Returns a structured breakdown of the wallet's portfolio including token holdings, asset balances, and potentially valuation data for the given blockchain address.

## 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"
    },
    "headers": {
     "type": "object",
     "additionalProperties": true
    },
    "pathParams": {
     "type": "object",
     "additionalProperties": true
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": true
    }
   },
   "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/gentech-wallet-portfolio-27b83d5c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gentechlabs.net](https://www.zero.xyz/host/api.gentechlabs.net/llms.txt)
