Hickle - Casper
- Size
- 26670 employees
- Founded
- 1966
- Location
- NL
Virtual client-driven productivity
Overview
companies / #40
Virtual client-driven productivity
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/40" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/40" ); 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/40"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/40"
)
companie = res.json() Response
{
"id": 40,
"name": "Hickle - Casper",
"slug": "hickle-casper-40",
"description": "Virtual client-driven productivity",
"industryId": 8,
"headquartersCountryAlpha2": "NL",
"employeeCount": 26670,
"foundedYear": 1966,
"websiteUrl": "https://example.com/companies/hickle-casper",
"logoUrl": "https://picsum.photos/seed/company-40/200/200",
"isHiring": true,
"createdAt": "2017-07-06T10:11:25.478Z"
}