Block, Wuckert and Little
- Size
- 39545 employees
- Founded
- 1978
- Location
- GR
Decentralized zero tolerance ability
companies / #56
Decentralized zero tolerance ability
curl -sS \
"https://example-data.com/api/v1/companies/56" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/56"
);
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/56"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/56"
)
companie = res.json() {
"id": 56,
"name": "Block, Wuckert and Little",
"slug": "block-wuckert-and-little-56",
"description": "Decentralized zero tolerance ability",
"industryId": 29,
"headquartersCountryAlpha2": "GR",
"employeeCount": 39545,
"foundedYear": 1978,
"websiteUrl": "https://www.block-wuckert-and-little.com",
"logoUrl": "https://picsum.photos/seed/company-56/200/200",
"isHiring": false,
"createdAt": "2011-05-29T08:40:45.257Z"
}