stock-holdings / #190
- userId
-
Velma Jerde @velma.jerde56
- stockId
- stocks/99
- quantity
- 787.6942
- costBasis
- 3810.2
- purchasedAt
Component variants
Medium
#190
#190
Small
stock-holdings/190 Related
References
curl -sS \
"https://example-data.com/api/v1/stock-holdings/190" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stock-holdings/190"
);
const stockHolding = await res.json();import type { StockHolding } from "https://example-data.com/types/stock-holdings.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/stock-holdings/190"
);
const stockHolding = (await res.json()) as StockHolding;import requests
res = requests.get(
"https://example-data.com/api/v1/stock-holdings/190"
)
stock_holding = res.json() {
"id": 190,
"userId": 93,
"stockId": 99,
"quantity": 787.6942,
"costBasis": 3810.2,
"purchasedAt": "2026-03-23T13:13:36.537Z"
}