Marks, Krajcik and Casper
- Size
- 28328 employees
- Founded
- 1979
- Location
- MY
Secured well-modulated infrastructure
companies / #46
Secured well-modulated infrastructure
curl -sS \
"https://example-data.com/api/v1/companies/46" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/46"
);
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/46"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/46"
)
companie = res.json() {
"id": 46,
"name": "Marks, Krajcik and Casper",
"slug": "marks-krajcik-and-casper-46",
"description": "Secured well-modulated infrastructure",
"industryId": 34,
"headquartersCountryAlpha2": "MY",
"employeeCount": 28328,
"foundedYear": 1979,
"websiteUrl": "https://www.marks-krajcik-and-casper.com",
"logoUrl": "https://picsum.photos/seed/company-46/200/200",
"isHiring": false,
"createdAt": "2011-10-12T18:40:29.871Z"
}