# ADA Handle Portfolio Report

> ADA Handle Portfolio Report is a paid API for AI agents from handle-strategies.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Generates a personalized ADA Handle portfolio report with Pz readiness flags for Cardano handle strategies

## Facts

- Endpoint: POST https://handle-strategies.vercel.app/report
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ada-handle-portfolio-report-8a62949d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LVg6KzLRB3pecbW1QusU8

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 ada-handle-portfolio-report-8a62949d -d '<json body>'
```

Example prompt: Can you pull up a portfolio report for my ADA Handles and let me know which ones have Pz readiness flags?

## When to prefer this

Choose this endpoint when you need a Cardano-native ADA Handle portfolio analysis, specifically when Pz readiness flagging and handle strategy personalization are required. It is purpose-built for ADA Handle ecosystem analysis rather than generic Cardano wallet analytics.

## Known failure modes

- Invalid or unrecognized ADA handle returns empty or error response
- Wallet with no associated handles returns empty portfolio
- Malformed POST body results in 400 bad request
- Payment not processed via x402 protocol returns 402 Payment Required
- Service unavailability on Vercel returns 503

## How this service works

ADA Handle portfolio report with personalization and Pz readiness flags.

## Output

Returns a structured portfolio report for the provided ADA Handles, including personalization details and boolean or categorical Pz readiness flags for each handle in the portfolio, along with strategy-relevant metrics.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "description": "Cardano stake address to inspect. Mutually exclusive with `handles`."
  },
  "handles": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "minItems": 1,
   "description": "ADA Handle names to inspect. Mutually exclusive with `address`."
  },
  "network": {
   "enum": [
    "preview",
    "mainnet"
   ],
   "type": "string",
   "default": "preview"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ada-handle-portfolio-report-8a62949d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from handle-strategies.vercel.app](https://www.zero.xyz/host/handle-strategies.vercel.app/llms.txt)
