Commercial Real Estate
Office, retail, and mixed-use property development and management.
industries / #30
Office, retail, and mixed-use property development and management.
curl -sS \
"https://example-data.com/api/v1/industries/30" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/industries/30"
);
const industrie = await res.json();import type { Industrie } from "https://example-data.com/types/industries.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/industries/30"
);
const industrie = (await res.json()) as Industrie;import requests
res = requests.get(
"https://example-data.com/api/v1/industries/30"
)
industrie = res.json() {
"id": 30,
"name": "Commercial Real Estate",
"slug": "commercial-real-estate",
"sector": "Real Estate",
"description": "Office, retail, and mixed-use property development and management."
}