stocks
stocks
Page 3 of 5.
Overview
-
Klocko Group Corp.
#49
-
Cruickshank - Okuneva Corp.
#50
-
Bergnaum Group Corp.
#51
-
Heaney - Mitchell Corp.
#52
-
Lockman Inc Corp.
#53
-
Pouros, Turner and Considine Corp.
#54
-
Donnelly, Hand and Wolff Corp.
#55
-
Stehr, Walker and Powlowski Corp.
#56
-
Schinner Group Corp.
#57
-
Koepp, Padberg and Jerde Corp.
#58
-
Botsford - Schiller Corp.
#59
-
Jerde, Bashirian and Anderson Corp.
#60
-
Raynor, Braun and Adams Corp.
#61
-
Wilkinson and Sons Corp.
#62
-
Tillman, Oberbrunner and Considine Corp.
#63
-
Zieme - Bernhard Corp.
#64
-
Zieme - Walter Corp.
#65
-
Waelchi Inc Corp.
#66
-
Hessel Inc Corp.
#67
-
Hilpert - Bartell Corp.
#68
-
Hyatt - Wolff Corp.
#69
-
Volkman - Nienow Corp.
#70
-
Effertz, Crona and Kunde Corp.
#71
-
Mitchell - Smith Corp.
#72
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/stocks?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/stocks.d.ts https://example-data.com/types/stocks.d.ts
import type { Stock, ListEnvelope } from "./types/stocks";
const res = await fetch(
"https://example-data.com/api/v1/stocks?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Stock>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 49,
"symbol": "PCJ",
"name": "Klocko Group Corp.",
"exchange": "TSX",
"sector": "Technology",
"marketCap": 3862806694768,
"price": 1025.96,
"priceChangePercent24h": -4.78,
"volume24h": 33749464,
"createdAt": "2026-04-05T01:05:27.536Z"
},
{
"id": 50,
"symbol": "LZ",
"name": "Cruickshank - Okuneva Corp.",
"exchange": "TSX",
"sector": "Health Care",
"marketCap": 6925126901279,
"price": 3553.84,
"priceChangePercent24h": -7.32,
"volume24h": 61910267,
"createdAt": "2026-03-14T07:02:24.803Z"
},
{
"id": 51,
"symbol": "LPK",
"name": "Bergnaum Group Corp.",
"exchange": "TSX",
"sector": "Communication Services",
"marketCap": 2869960984492,
"price": 3090.93,
"priceChangePercent24h": -1.81,
"volume24h": 40859925,
"createdAt": "2024-08-15T12:10:28.835Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 100,
"totalPages": 5
},
"links": {
"self": "/api/v1/stocks?page=3&limit=24",
"first": "/api/v1/stocks?page=1&limit=24",
"last": "/api/v1/stocks?page=5&limit=24",
"next": "/api/v1/stocks?page=4&limit=24",
"prev": "/api/v1/stocks?page=2&limit=24"
}
}