Feest - Kessler
- Size
- 3495 employees
- Founded
- 1981
- Location
- NG
Open-architected empowering process improvement
Overview
companies / #49
Open-architected empowering process improvement
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/49" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/49" ); 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/49"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/49"
)
companie = res.json() Response
{
"id": 49,
"name": "Feest - Kessler",
"slug": "feest-kessler-49",
"description": "Open-architected empowering process improvement",
"industryId": 13,
"headquartersCountryAlpha2": "NG",
"employeeCount": 3495,
"foundedYear": 1981,
"websiteUrl": "https://example.com/companies/feest-kessler",
"logoUrl": "https://picsum.photos/seed/company-49/200/200",
"isHiring": true,
"createdAt": "2014-07-18T08:14:35.071Z"
}