Hessel and Sons
- Size
- 43634 employees
- Founded
- 1946
- Location
- SA
Optimized logistical instruction set
Overview
companies / #29
Optimized logistical instruction set
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/29" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/29" ); 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/29"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/29"
)
companie = res.json() Response
{
"id": 29,
"name": "Hessel and Sons",
"slug": "hessel-and-sons-29",
"description": "Optimized logistical instruction set",
"industryId": 9,
"headquartersCountryAlpha2": "SA",
"employeeCount": 43634,
"foundedYear": 1946,
"websiteUrl": "https://example.com/companies/hessel-and-sons",
"logoUrl": "https://picsum.photos/seed/company-29/200/200",
"isHiring": false,
"createdAt": "2025-04-26T00:22:57.480Z"
}