stock-holdings #308
- userId
-
Adan Weber @adan.weber61
- stockId
- stocks/30
- quantity
- 282.4829
- costBasis
- 4158.21
- purchasedAt
Overview
stock-holdings / #308
#308
#308
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stock-holdings/308" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stock-holdings/308" ); const stockHolding = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/stock-holdings.d.ts https://example-data.com/types/stock-holdings.d.ts
import type { StockHolding } from "./types/stock-holdings";
const res = await fetch(
"https://example-data.com/api/v1/stock-holdings/308"
);
const stockHolding = (await res.json()) as StockHolding; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stock-holdings/308"
)
stock_holding = res.json() Response
{
"id": 308,
"userId": 155,
"stockId": 30,
"quantity": 282.4829,
"costBasis": 4158.21,
"purchasedAt": "2025-04-16T07:39:54.741Z"
}