Thermo Fisher Scientific Inc.
- symbol
- TMO
- name
- Thermo Fisher Scientific Inc.
- exchange
- NYSE
- sector
- Health Care
- marketCap
- 11243532281551
- price
- 4817.72
- priceChangePercent24h
- -3.62
- volume24h
- 302150899
- createdAt
Overview
stocks / #23
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/23" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/23" ); const stock = 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 } from "./types/stocks";
const res = await fetch(
"https://example-data.com/api/v1/stocks/23"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/23"
)
stock = res.json() Response
{
"id": 23,
"symbol": "TMO",
"name": "Thermo Fisher Scientific Inc.",
"exchange": "NYSE",
"sector": "Health Care",
"marketCap": 11243532281551,
"price": 4817.72,
"priceChangePercent24h": -3.62,
"volume24h": 302150899,
"createdAt": "2026-03-10T12:26:30.248Z"
}