Jacobs - Kub
- Size
- 38012 employees
- Founded
- 2017
- Location
- FI
Polarised dynamic capability
companies / #68
Polarised dynamic capability
curl -sS \
"https://example-data.com/api/v1/companies/68" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/68"
);
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/68"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/68"
)
companie = res.json() {
"id": 68,
"name": "Jacobs - Kub",
"slug": "jacobs-kub-68",
"description": "Polarised dynamic capability",
"industryId": 9,
"headquartersCountryAlpha2": "FI",
"employeeCount": 38012,
"foundedYear": 2017,
"websiteUrl": null,
"logoUrl": "https://picsum.photos/seed/company-68/200/200",
"isHiring": false,
"createdAt": "2013-01-18T10:27:13.897Z"
}