stock-holdings / #237
- userId
-
Lennie Dickinson @lennie_dickinson8
- stockId
- stocks/43
- quantity
- 657.1319
- costBasis
- 3225.35
- purchasedAt
Component variants
Medium
#237
#237
Small
stock-holdings/237 Related
References
curl -sS \
"https://example-data.com/api/v1/stock-holdings/237" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stock-holdings/237"
);
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/237"
);
const stockHolding = (await res.json()) as StockHolding;import requests
res = requests.get(
"https://example-data.com/api/v1/stock-holdings/237"
)
stock_holding = res.json() {
"id": 237,
"userId": 121,
"stockId": 43,
"quantity": 657.1319,
"costBasis": 3225.35,
"purchasedAt": "2025-11-11T23:30:05.954Z"
}