Construction
Building and infrastructure projects for residential and commercial use.
industries / #27
Building and infrastructure projects for residential and commercial use.
curl -sS \
"https://example-data.com/api/v1/industries/27" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/industries/27"
);
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/27"
);
const industrie = (await res.json()) as Industrie;import requests
res = requests.get(
"https://example-data.com/api/v1/industries/27"
)
industrie = res.json() {
"id": 27,
"name": "Construction",
"slug": "construction",
"sector": "Industrials",
"description": "Building and infrastructure projects for residential and commercial use."
}