example-data.com

stocks

stocks

Page 3 of 5.

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"
  }
}
Draftbit