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