stocks
stocks
Page 2 of 5.
-
Chevron Corporation
#25
-
Walmart Inc.
#26
-
Merck & Co. Inc.
#27
-
Oracle Corporation
#28
-
Netflix Inc.
#29
-
Salesforce Inc.
#30
-
Luettgen and Sons Corp.
#31
-
Weimann - Kris Corp.
#32
-
Kertzmann - Dietrich Corp.
#33
-
Huel, Anderson and Leffler Corp.
#34
-
Ebert Group Corp.
#35
-
Dicki, McLaughlin and Durgan Corp.
#36
-
Wiza - Goodwin Corp.
#37
-
Hackett and Sons Corp.
#38
-
Von Inc Corp.
#39
-
Jones - Grimes Corp.
#40
-
Haag - Reichel Corp.
#41
-
Medhurst - Hirthe Corp.
#42
-
Herman - O'Connell Corp.
#43
-
Block, O'Conner and Walker Corp.
#44
-
Cummings, Bahringer and Jaskolski Corp.
#45
-
Franecki, Baumbach and Jast Corp.
#46
-
Parisian - Upton Corp.
#47
-
Stokes - Purdy Corp.
#48
- 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"
}
}