Jerde, Bashirian and Anderson Corp.
- symbol
- LUU
- name
- Jerde, Bashirian and Anderson Corp.
- exchange
- NYSE
- sector
- Technology
- marketCap
- 4587410699188
- price
- 1062.5
- priceChangePercent24h
- 14.09
- volume24h
- 5800420
- createdAt
Overview
stocks / #60
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/60" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/60" ); 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/60"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/60"
)
stock = res.json() Response
{
"id": 60,
"symbol": "LUU",
"name": "Jerde, Bashirian and Anderson Corp.",
"exchange": "NYSE",
"sector": "Technology",
"marketCap": 4587410699188,
"price": 1062.5,
"priceChangePercent24h": 14.09,
"volume24h": 5800420,
"createdAt": "2025-09-30T04:32:59.684Z"
}