stocks
stocks
Page 3 of 5.
-
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
- symbol
- PCJ
- name
- Klocko Group Corp.
- exchange
- TSX
- sector
- Technology
- marketCap
- 3862806694768
- price
- 1025.96
- priceChangePercent24h
- -4.78
- volume24h
- 33749464
- createdAt
- symbol
- LZ
- name
- Cruickshank - Okuneva Corp.
- exchange
- TSX
- sector
- Health Care
- marketCap
- 6925126901279
- price
- 3553.84
- priceChangePercent24h
- -7.32
- volume24h
- 61910267
- createdAt
- symbol
- LPK
- name
- Bergnaum Group Corp.
- exchange
- TSX
- sector
- Communication Services
- marketCap
- 2869960984492
- price
- 3090.93
- priceChangePercent24h
- -1.81
- volume24h
- 40859925
- createdAt
- symbol
- NX
- name
- Heaney - Mitchell Corp.
- exchange
- NYSE
- sector
- Utilities
- marketCap
- 615543770951
- price
- 304.57
- priceChangePercent24h
- -2.63
- volume24h
- 84741397
- createdAt
- symbol
- HGL
- name
- Lockman Inc Corp.
- exchange
- LSE
- sector
- Technology
- marketCap
- 10506317547138
- price
- 4951.08
- priceChangePercent24h
- -9.48
- volume24h
- 22244853
- createdAt
- symbol
- DNL
- name
- Pouros, Turner and Considine Corp.
- exchange
- HKEX
- sector
- Communication Services
- marketCap
- 3559860490749
- price
- 2831.02
- priceChangePercent24h
- 14.84
- volume24h
- 80375972
- createdAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/stocks?limit=25"const res = await fetch(
"https://example-data.com/api/v1/stocks?limit=25"
);
const { data, meta } = await res.json();import type { Stock, ListEnvelope } from "https://example-data.com/types/stocks.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/stocks?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Stock>;import requests
res = requests.get(
"https://example-data.com/api/v1/stocks",
params={"limit": 25},
)
data = res.json() {
"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",
"next": "/api/v1/stocks?page=4",
"prev": "/api/v1/stocks?page=2"
}
}