example-data.com

stocks

stocks

Page 2 of 5.

symbol
CVX
name
Chevron Corporation
exchange
NYSE
sector
Energy
marketCap
4691422441999
price
4383.48
priceChangePercent24h
-3.2
volume24h
337939101
createdAt
symbol
WMT
name
Walmart Inc.
exchange
NYSE
sector
Consumer Staples
marketCap
11917636752430
price
2401.22
priceChangePercent24h
-2.58
volume24h
494683067
createdAt
symbol
MRK
name
Merck & Co. Inc.
exchange
NYSE
sector
Health Care
marketCap
14513729204691
price
3970.08
priceChangePercent24h
9.43
volume24h
22319382
createdAt
symbol
ORCL
name
Oracle Corporation
exchange
NYSE
sector
Technology
marketCap
5882608375883
price
640.1
priceChangePercent24h
10.52
volume24h
276466428
createdAt
symbol
NFLX
name
Netflix Inc.
exchange
NASDAQ
sector
Communication Services
marketCap
18132618250857
price
2481.01
priceChangePercent24h
-11.68
volume24h
251515826
createdAt
symbol
CRM
name
Salesforce Inc.
exchange
NYSE
sector
Technology
marketCap
19347566706980
price
2658.7
priceChangePercent24h
-2.8
volume24h
398346986
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": 25,
      "symbol": "CVX",
      "name": "Chevron Corporation",
      "exchange": "NYSE",
      "sector": "Energy",
      "marketCap": 4691422441999,
      "price": 4383.48,
      "priceChangePercent24h": -3.2,
      "volume24h": 337939101,
      "createdAt": "2025-03-16T15:09:52.590Z"
    },
    {
      "id": 26,
      "symbol": "WMT",
      "name": "Walmart Inc.",
      "exchange": "NYSE",
      "sector": "Consumer Staples",
      "marketCap": 11917636752430,
      "price": 2401.22,
      "priceChangePercent24h": -2.58,
      "volume24h": 494683067,
      "createdAt": "2025-07-07T11:18:49.913Z"
    },
    {
      "id": 27,
      "symbol": "MRK",
      "name": "Merck & Co. Inc.",
      "exchange": "NYSE",
      "sector": "Health Care",
      "marketCap": 14513729204691,
      "price": 3970.08,
      "priceChangePercent24h": 9.43,
      "volume24h": 22319382,
      "createdAt": "2024-07-07T12:01:15.549Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 100,
    "totalPages": 5
  },
  "links": {
    "self": "/api/v1/stocks?page=2",
    "next": "/api/v1/stocks?page=3",
    "prev": "/api/v1/stocks?page=1"
  }
}
Draftbit