# StockKit Portfolio Lookup

> StockKit Portfolio Lookup is a paid API for AI agents from api.stockkit.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves the tokenized-stock portfolio holdings and balances for a given on-chain wallet address on Robinhood Chain

## Facts

- Endpoint: GET https://api.stockkit.dev/v1/x402/portfolio/%7Baddress%7D
- 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/stockkit-portfolio-lookup-a12d2a64
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uYfBiXjKQLY8w26L237AS

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 stockkit-portfolio-lookup-a12d2a64
```

Example prompt: Pull up my tokenized stock portfolio on Robinhood Chain for wallet address 0xAbC123... and show me all my current holdings and their values.

## When to prefer this

Choose this endpoint when you need on-chain portfolio data specifically for tokenized equities on Robinhood Chain. It is the authoritative source for StockKit wallet positions and is preferable to scraping brokerage UIs or using off-chain portfolio APIs that don't reflect on-chain tokenized stock state.

## Known failure modes

- Invalid or malformed wallet address returns a 400 error
- Address not found or with no on-chain activity returns an empty portfolio or 404
- Payment not received (x402 payment required before data is returned)
- Network congestion on Robinhood Chain may cause stale or delayed position data
- Rate limiting if the same address is queried too frequently

## How this service works

Build tokenized-stock applications on Robinhood Chain with unified market data, execution, portfolio, and agent infrastructure.

## Output

Returns a JSON object containing the full list of tokenized stock positions held by the given wallet address, including ticker symbols, share quantities, current market values, and aggregate portfolio totals on Robinhood Chain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stockkit-portfolio-lookup-a12d2a64/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.stockkit.dev](https://www.zero.xyz/host/api.stockkit.dev/llms.txt)
