example-data.com

stocks

stocks

Page 4 of 5.

symbol
JSK
name
Buckridge and Sons Corp.
exchange
LSE
sector
Consumer Discretionary
marketCap
1587464500722
price
366.1
priceChangePercent24h
0.35
volume24h
85755988
createdAt
symbol
UAX
name
D'Amore LLC Corp.
exchange
TSX
sector
Energy
marketCap
428631115660
price
149.14
priceChangePercent24h
12.31
volume24h
72860921
createdAt
symbol
HIU
name
Sauer Group Corp.
exchange
HKEX
sector
Utilities
marketCap
4749798632285
price
1513.92
priceChangePercent24h
7.81
volume24h
44589940
createdAt
symbol
GKCV
name
Williamson LLC Corp.
exchange
LSE
sector
Technology
marketCap
385524374093
price
751.89
priceChangePercent24h
-14.59
volume24h
87592879
createdAt
symbol
QA
name
Rogahn - Runolfsson Corp.
exchange
NASDAQ
sector
Financials
marketCap
7169626158605
price
4084.21
priceChangePercent24h
-1.25
volume24h
66024666
createdAt
symbol
GCO
name
Waters Group Corp.
exchange
NASDAQ
sector
Real Estate
marketCap
2323485198308
price
678.27
priceChangePercent24h
-12.4
volume24h
25061539
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": 73,
      "symbol": "JSK",
      "name": "Buckridge and Sons Corp.",
      "exchange": "LSE",
      "sector": "Consumer Discretionary",
      "marketCap": 1587464500722,
      "price": 366.1,
      "priceChangePercent24h": 0.35,
      "volume24h": 85755988,
      "createdAt": "2025-11-01T23:15:09.226Z"
    },
    {
      "id": 74,
      "symbol": "UAX",
      "name": "D'Amore LLC Corp.",
      "exchange": "TSX",
      "sector": "Energy",
      "marketCap": 428631115660,
      "price": 149.14,
      "priceChangePercent24h": 12.31,
      "volume24h": 72860921,
      "createdAt": "2025-01-02T18:46:58.945Z"
    },
    {
      "id": 75,
      "symbol": "HIU",
      "name": "Sauer Group Corp.",
      "exchange": "HKEX",
      "sector": "Utilities",
      "marketCap": 4749798632285,
      "price": 1513.92,
      "priceChangePercent24h": 7.81,
      "volume24h": 44589940,
      "createdAt": "2025-09-26T15:56:40.121Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 100,
    "totalPages": 5
  },
  "links": {
    "self": "/api/v1/stocks?page=4",
    "next": "/api/v1/stocks?page=5",
    "prev": "/api/v1/stocks?page=3"
  }
}
Draftbit