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