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