Rodriguez and Sons Corp.
- symbol
- JXUU
- name
- Rodriguez and Sons Corp.
- exchange
- NASDAQ
- sector
- Real Estate
- marketCap
- 8339207728747
- price
- 3683.87
- priceChangePercent24h
- 10.53
- volume24h
- 23882924
- createdAt
Overview
stocks / #92
Rodriguez and Sons Corp.
#92
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stocks/92" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stocks/92" ); 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/92"
);
const stock = (await res.json()) as Stock; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stocks/92"
)
stock = res.json() Response
{
"id": 92,
"symbol": "JXUU",
"name": "Rodriguez and Sons Corp.",
"exchange": "NASDAQ",
"sector": "Real Estate",
"marketCap": 8339207728747,
"price": 3683.87,
"priceChangePercent24h": 10.53,
"volume24h": 23882924,
"createdAt": "2025-11-12T03:24:56.508Z"
}