# Tokenized Stock Position

> Tokenized Stock Position is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns split-adjusted and unadjusted share balances for tokenized equities held in a wallet, correcting for the B20 multiplier that raw balanceOf() reads miss

## Facts

- Endpoint: GET https://402.com.tr/api/x402/stock-position
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenized-stock-position-87fe4161
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GjxeFVadPz36y_a1y4O-Y

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 tokenized-stock-position-87fe4161
```

Example prompt: Can you pull my tokenized stock positions for wallet 0xAbc...123 and show me both the raw on-chain balance and the split-adjusted share count for each holding, so I can see if anything is off?

## When to prefer this

Use this endpoint when you need accurate share counts for tokenized equities on Base and want to detect or correct for B20 multiplier divergence — especially around stock split or dividend adjustment events. Prefer it over raw balanceOf() reads or generic token balance endpoints (like the sibling Wallet Token Portfolio) when the holdings include Coinbase's 13 tokenized equities and correctness of the share count matters for reporting, trading, or audit purposes.

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result
- Wallet with no tokenized equity holdings returns an empty positions array
- Network or RPC issues may cause stale or unavailable on-chain data
- Multiplier event that fired within the current block may not yet be reflected
- LP/lending-deposited positions are declared excluded and will not appear in output

## How this service works

B20 Asset tokens do NOT apply multiplier() to balanceOf() — measured on chain: a multiplier moved 1.0→2.0 while holder balances read identically. Coinbase settles splits and dividend adjustments on its 13 tokenized equities through that multiplier, so reading balanceOf as a share count is wrong by exactly that factor the day one fires. Returns both numbers per holding: what an unadjusted integrator shows, and what is owed. Wallet balances only; LP/lending is declared excluded, never zeroed.

## Output

A per-holding breakdown of each tokenized equity in the wallet, returning both the raw on-chain balanceOf() figure and the multiplier-corrected share count. Highlights any discrepancy caused by split or dividend multiplier events. LP and lending protocol balances are explicitly excluded (wallet balances only).

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "wallet"
     ],
     "properties": {
      "wallet": {
       "type": "string",
       "description": "Wallet address"
      }
     }
    }
   },
   "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/tokenized-stock-position-87fe4161/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
