Kemmer, Davis and Casper
- Size
- 4337 employees
- Founded
- 2009
- Location
- PK
Immersive systemic toolset
companies / #35
Immersive systemic toolset
curl -sS \
"https://example-data.com/api/v1/companies/35" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/35"
);
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/35"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/35"
)
companie = res.json() {
"id": 35,
"name": "Kemmer, Davis and Casper",
"slug": "kemmer-davis-and-casper-35",
"description": "Immersive systemic toolset",
"industryId": 15,
"headquartersCountryAlpha2": "PK",
"employeeCount": 4337,
"foundedYear": 2009,
"websiteUrl": "https://www.kemmer-davis-and-casper.com",
"logoUrl": "https://picsum.photos/seed/company-35/200/200",
"isHiring": true,
"createdAt": "2016-02-16T00:43:19.228Z"
}