Gulgowski, Hammes and Jacobi
- Size
- 23782 employees
- Founded
- 1961
- Location
- CL
Quality-focused full-range open architecture
Overview
companies / #43
Quality-focused full-range open architecture
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/43" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/43" ); 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/43"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/43"
)
companie = res.json() Response
{
"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"
}