# CoinStats Portfolio List

> CoinStats Portfolio List is a paid API for AI agents from x402.coinstats.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns a list of the authenticated user's cryptocurrency portfolios from CoinStats

## Facts

- Endpoint: GET https://x402.coinstats.app/portfolio/list
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-coinstats-app-60fc762a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G8jNtZ2eTpwYQMoJyfFeE

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 x402-coinstats-app-60fc762a
```

Example prompt: Show me all the portfolios on my CoinStats account — I have a Degen plan and want to see which portfolios are available so I can pick one to analyze.

## When to prefer this

Use this endpoint when you need to discover which portfolios a CoinStats user has before drilling into individual portfolio details, charts, or DeFi positions. It is the entry point for portfolio-level operations and required before calling portfolio-specific endpoints that need a portfolio ID.

## Known failure modes

- Missing or invalid sharetoken header returns 401/403 unauthorized
- User is not on Degen plan — portfolio sharing may not be enabled
- Empty list returned if user has no portfolios configured
- Rate limiting or payment failure returns 402 or 429
- Service downtime returns 500 or timeout

## How this service works

User's portfolios

## Output

Returns a list of portfolios associated with the authenticated CoinStats user, including portfolio identifiers, names, and metadata needed to make further portfolio-specific requests.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "type"
 ],
 "properties": {
  "type": {
   "enum": [
    "24h",
    "1w",
    "1m",
    "3m",
    "6m",
    "1y",
    "all"
   ],
   "type": "string",
   "description": "Time period for the data"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-coinstats-app-60fc762a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.coinstats.app](https://www.zero.xyz/host/x402.coinstats.app/llms.txt)
