Broadcom Inc.
- symbol
- AVGO
- name
- Broadcom Inc.
- exchange
- NASDAQ
- sector
- Technology
- marketCap
- 16008813140685
- price
- 2154.92
- priceChangePercent24h
- -14.99
- volume24h
- 416537727
- createdAt
Overview
stocks / #21
Broadcom Inc.
#21
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/21" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/21" ); 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/21"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/21"
)
stock = res.json() Response
{
"id": 21,
"symbol": "AVGO",
"name": "Broadcom Inc.",
"exchange": "NASDAQ",
"sector": "Technology",
"marketCap": 16008813140685,
"price": 2154.92,
"priceChangePercent24h": -14.99,
"volume24h": 416537727,
"createdAt": "2025-10-13T13:35:09.111Z"
}