Gulgowski, Hammes and Jacobi
- Size
- 23782 employees
- Founded
- 1961
- Location
- CL
Quality-focused full-range open architecture
companies / #43
Quality-focused full-range open architecture
curl -sS \
"https://example-data.com/api/v1/companies/43" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/43"
);
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/43"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/43"
)
companie = res.json() {
"id": 43,
"name": "Gulgowski, Hammes and Jacobi",
"slug": "gulgowski-hammes-and-jacobi-43",
"description": "Quality-focused full-range open architecture",
"industryId": 17,
"headquartersCountryAlpha2": "CL",
"employeeCount": 23782,
"foundedYear": 1961,
"websiteUrl": null,
"logoUrl": "https://picsum.photos/seed/company-43/200/200",
"isHiring": true,
"createdAt": "2020-02-12T03:09:06.960Z"
}