Klocko - Gutmann
- Size
- 46687 employees
- Founded
- 1976
- Location
- FR
Networked global adapter
Overview
companies / #78
Networked global adapter
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/78" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/78" ); 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/78"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/78"
)
companie = res.json() Response
{
"id": 78,
"name": "Klocko - Gutmann",
"slug": "klocko-gutmann-78",
"description": "Networked global adapter",
"industryId": 4,
"headquartersCountryAlpha2": "FR",
"employeeCount": 46687,
"foundedYear": 1976,
"websiteUrl": "https://example.com/companies/klocko-gutmann",
"logoUrl": "https://picsum.photos/seed/company-78/200/200",
"isHiring": true,
"createdAt": "2023-08-03T18:02:17.878Z"
}