Hettinger LLC
- Size
- 42712 employees
- Founded
- 2021
- Website
- https://www.hettinger-llc.com
- Location
- MA
Enhanced encompassing synergy
companies / #76
Enhanced encompassing synergy
curl -sS \
"https://example-data.com/api/v1/companies/76" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/76"
);
const companie = await res.json();import type { Companie } from "https://example-data.com/types/companies.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/companies/76"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/76"
)
companie = res.json() {
"id": 76,
"name": "Hettinger LLC",
"slug": "hettinger-llc-76",
"description": "Enhanced encompassing synergy",
"industryId": 20,
"headquartersCountryAlpha2": "MA",
"employeeCount": 42712,
"foundedYear": 2021,
"websiteUrl": "https://www.hettinger-llc.com",
"logoUrl": "https://picsum.photos/seed/company-76/200/200",
"isHiring": true,
"createdAt": "2024-06-07T20:02:39.779Z"
}