stock-holdings
stock-holdings
Page 3 of 10.
- stock-holdings/49
- stock-holdings/50
- stock-holdings/51
- stock-holdings/52
- stock-holdings/53
- stock-holdings/54
- stock-holdings/55
- stock-holdings/56
- stock-holdings/57
- stock-holdings/58
- stock-holdings/59
- stock-holdings/60
- stock-holdings/61
- stock-holdings/62
- stock-holdings/63
- stock-holdings/64
- stock-holdings/65
- stock-holdings/66
- stock-holdings/67
- stock-holdings/68
- stock-holdings/69
- stock-holdings/70
- stock-holdings/71
- stock-holdings/72
- userId
-
Jensen Bashirian @jensen_bashirian
- stockId
- stocks/16
- quantity
- 899.4143
- costBasis
- 3086.04
- purchasedAt
- userId
-
Jensen Bashirian @jensen_bashirian
- stockId
- stocks/26
- quantity
- 936.4493
- costBasis
- 3423.42
- purchasedAt
- userId
-
Jensen Bashirian @jensen_bashirian
- stockId
- stocks/78
- quantity
- 640.9844
- costBasis
- 461.43
- purchasedAt
- userId
-
Conrad Connelly @conrad.connelly22
- stockId
- stocks/60
- quantity
- 270.7838
- costBasis
- 1019.47
- purchasedAt
- userId
-
Izaiah Rempel @izaiah_rempel
- stockId
- stocks/57
- quantity
- 827.1606
- costBasis
- 223.1
- purchasedAt
- userId
-
Izaiah Rempel @izaiah_rempel
- stockId
- stocks/91
- quantity
- 901.6696
- costBasis
- 1983.11
- purchasedAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/stock-holdings?limit=25"const res = await fetch(
"https://example-data.com/api/v1/stock-holdings?limit=25"
);
const { data, meta } = await res.json();import type { StockHolding, ListEnvelope } from "https://example-data.com/types/stock-holdings.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/stock-holdings?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<StockHolding>;import requests
res = requests.get(
"https://example-data.com/api/v1/stock-holdings",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 49,
"userId": 29,
"stockId": 16,
"quantity": 899.4143,
"costBasis": 3086.04,
"purchasedAt": "2025-11-18T17:58:33.882Z"
},
{
"id": 50,
"userId": 29,
"stockId": 26,
"quantity": 936.4493,
"costBasis": 3423.42,
"purchasedAt": "2025-07-13T16:28:49.613Z"
},
{
"id": 51,
"userId": 29,
"stockId": 78,
"quantity": 640.9844,
"costBasis": 461.43,
"purchasedAt": "2025-09-16T12:09:36.630Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 512,
"totalPages": 22
},
"links": {
"self": "/api/v1/stock-holdings?page=3",
"next": "/api/v1/stock-holdings?page=4",
"prev": "/api/v1/stock-holdings?page=2"
}
}