Donnelly - Kautzer
- Size
- 45775 employees
- Founded
- 1982
- Location
- IT
Fully-configurable asymmetric budgetary management
Overview
companies / #19
Fully-configurable asymmetric budgetary management
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/19" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/19" ); 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/19"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/19"
)
companie = res.json() Response
{
"id": 19,
"name": "Donnelly - Kautzer",
"slug": "donnelly-kautzer-19",
"description": "Fully-configurable asymmetric budgetary management",
"industryId": 20,
"headquartersCountryAlpha2": "IT",
"employeeCount": 45775,
"foundedYear": 1982,
"websiteUrl": "https://example.com/companies/donnelly-kautzer",
"logoUrl": "https://picsum.photos/seed/company-19/200/200",
"isHiring": false,
"createdAt": "2016-06-15T17:48:17.835Z"
}