Waters Group Corp.
- symbol
- GCO
- name
- Waters Group Corp.
- exchange
- NASDAQ
- sector
- Real Estate
- marketCap
- 2323485198308
- price
- 678.27
- priceChangePercent24h
- -12.4
- volume24h
- 25061539
- createdAt
Overview
stocks / #78
Waters Group Corp.
#78
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/78" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/78" ); 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/78"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/78"
)
stock = res.json() Response
{
"id": 78,
"symbol": "GCO",
"name": "Waters Group Corp.",
"exchange": "NASDAQ",
"sector": "Real Estate",
"marketCap": 2323485198308,
"price": 678.27,
"priceChangePercent24h": -12.4,
"volume24h": 25061539,
"createdAt": "2025-01-22T14:48:33.281Z"
}