Dicki - Lueilwitz Corp.
- symbol
- VI
- name
- Dicki - Lueilwitz Corp.
- exchange
- HKEX
- sector
- Real Estate
- marketCap
- 4932577108424
- price
- 3790.35
- priceChangePercent24h
- 8.42
- volume24h
- 90784704
- createdAt
Overview
stocks / #91
Dicki - Lueilwitz Corp.
#91
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/91" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/91" ); 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/91"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/91"
)
stock = res.json() Response
{
"id": 91,
"symbol": "VI",
"name": "Dicki - Lueilwitz Corp.",
"exchange": "HKEX",
"sector": "Real Estate",
"marketCap": 4932577108424,
"price": 3790.35,
"priceChangePercent24h": 8.42,
"volume24h": 90784704,
"createdAt": "2025-03-24T07:41:18.244Z"
}