Management Consulting
Advisory firms helping organizations improve strategy, operations, and performance.
Overview
industries / #39
Advisory firms helping organizations improve strategy, operations, and performance.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/industries/39" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/industries/39" ); const industry = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/industries.d.ts https://example-data.com/types/industries.d.ts
import type { Industry } from "./types/industries";
const res = await fetch(
"https://example-data.com/api/v1/industries/39"
);
const industry = (await res.json()) as Industry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/industries/39"
)
industrie = res.json() Response
{
"id": 39,
"name": "Management Consulting",
"slug": "management-consulting",
"sector": "Professional Services",
"description": "Advisory firms helping organizations improve strategy, operations, and performance."
}