example-data.com
Menu
Browse docs and collections

Overview

stocks / #31

Luettgen and Sons Corp.

symbol
SUJ
name
Luettgen and Sons Corp.
exchange
NASDAQ
sector
Health Care
marketCap
15170186189939
price
3548.64
priceChangePercent24h
12.62
volume24h
29391190
createdAt

Component variants

Related

Referenced by

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/stocks/31" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/stocks/31"
);
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/31"
);
const stock = (await res.json()) as Stock;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/stocks/31"
)
stock = res.json()

Response

{
  "id": 31,
  "symbol": "SUJ",
  "name": "Luettgen and Sons Corp.",
  "exchange": "NASDAQ",
  "sector": "Health Care",
  "marketCap": 15170186189939,
  "price": 3548.64,
  "priceChangePercent24h": 12.62,
  "volume24h": 29391190,
  "createdAt": "2025-12-15T06:39:24.685Z"
}