Kunde and Sons
- Size
- 18423 employees
- Founded
- 1969
- Location
- KE
Reverse-engineered discrete intranet
Overview
companies / #6
Reverse-engineered discrete intranet
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/6" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/6" ); 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/6"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/6"
)
companie = res.json() Response
{
"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"
}