Kunde and Sons
- Size
- 18423 employees
- Founded
- 1969
- Location
- KE
Reverse-engineered discrete intranet
companies / #6
Reverse-engineered discrete intranet
curl -sS \
"https://example-data.com/api/v1/companies/6" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/6"
);
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/6"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/6"
)
companie = res.json() {
"id": 6,
"name": "Kunde and Sons",
"slug": "kunde-and-sons-6",
"description": "Reverse-engineered discrete intranet",
"industryId": 1,
"headquartersCountryAlpha2": "KE",
"employeeCount": 18423,
"foundedYear": 1969,
"websiteUrl": null,
"logoUrl": "https://picsum.photos/seed/company-6/200/200",
"isHiring": true,
"createdAt": "2022-01-12T00:55:16.919Z"
}