stocks
stocks
Page 2 of 5.
Overview
-
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
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/stocks?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/stocks.d.ts https://example-data.com/types/stocks.d.ts
import type { Stock, ListEnvelope } from "./types/stocks";
const res = await fetch(
"https://example-data.com/api/v1/stocks?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Stock>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks",
params={"limit": 25},
)
data = res.json() Response
{
"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&limit=24",
"first": "/api/v1/stocks?page=1&limit=24",
"last": "/api/v1/stocks?page=5&limit=24",
"next": "/api/v1/stocks?page=3&limit=24",
"prev": "/api/v1/stocks?page=1&limit=24"
}
}