stock-holdings
stock-holdings
Page 8 of 10.
- stock-holdings/169
- stock-holdings/170
- stock-holdings/171
- stock-holdings/172
- stock-holdings/173
- stock-holdings/174
- stock-holdings/175
- stock-holdings/176
- stock-holdings/177
- stock-holdings/178
- stock-holdings/179
- stock-holdings/180
- stock-holdings/181
- stock-holdings/182
- stock-holdings/183
- stock-holdings/184
- stock-holdings/185
- stock-holdings/186
- stock-holdings/187
- stock-holdings/188
- stock-holdings/189
- stock-holdings/190
- stock-holdings/191
- stock-holdings/192
- userId
-
Colby Kovacek @colby_kovacek40
- stockId
- stocks/55
- quantity
- 165.5649
- costBasis
- 7529.8
- purchasedAt
- userId
-
Colby Kovacek @colby_kovacek40
- stockId
- stocks/20
- quantity
- 591.8114
- costBasis
- 3531.42
- purchasedAt
- userId
-
Colby Kovacek @colby_kovacek40
- stockId
- stocks/82
- quantity
- 234.2461
- costBasis
- 1236.02
- purchasedAt
- userId
-
Colby Kovacek @colby_kovacek40
- stockId
- stocks/32
- quantity
- 546.6887
- costBasis
- 1666.72
- purchasedAt
- userId
-
Mable West @mable_west
- stockId
- stocks/66
- quantity
- 582.2239
- costBasis
- 2773.64
- purchasedAt
- userId
-
Mable West @mable_west
- stockId
- stocks/51
- quantity
- 655.9008
- costBasis
- 3777.12
- 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": 169,
"userId": 85,
"stockId": 55,
"quantity": 165.5649,
"costBasis": 7529.8,
"purchasedAt": "2024-10-19T06:18:40.146Z"
},
{
"id": 170,
"userId": 85,
"stockId": 20,
"quantity": 591.8114,
"costBasis": 3531.42,
"purchasedAt": "2026-01-08T06:36:22.478Z"
},
{
"id": 171,
"userId": 85,
"stockId": 82,
"quantity": 234.2461,
"costBasis": 1236.02,
"purchasedAt": "2026-05-06T16:42:55.915Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 512,
"totalPages": 22
},
"links": {
"self": "/api/v1/stock-holdings?page=8",
"next": "/api/v1/stock-holdings?page=9",
"prev": "/api/v1/stock-holdings?page=7"
}
}