example-data.com
Menu
Browse docs and collections

Overview

stocks / #54

Pouros, Turner and Considine Corp.

symbol
DNL
name
Pouros, Turner and Considine Corp.
exchange
HKEX
sector
Communication Services
marketCap
3559860490749
price
2831.02
priceChangePercent24h
14.84
volume24h
80375972
createdAt

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 54,
  "symbol": "DNL",
  "name": "Pouros, Turner and Considine Corp.",
  "exchange": "HKEX",
  "sector": "Communication Services",
  "marketCap": 3559860490749,
  "price": 2831.02,
  "priceChangePercent24h": 14.84,
  "volume24h": 80375972,
  "createdAt": "2025-11-28T11:17:59.275Z"
}