Prohaska - Kuhn
- Size
- 4369 employees
- Founded
- 1946
- Location
- DK
Versatile neutral software
Overview
companies / #77
Versatile neutral software
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/77" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/77" ); 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/77"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/77"
)
companie = res.json() Response
{
"id": 77,
"name": "Prohaska - Kuhn",
"slug": "prohaska-kuhn-77",
"description": "Versatile neutral software",
"industryId": 7,
"headquartersCountryAlpha2": "DK",
"employeeCount": 4369,
"foundedYear": 1946,
"websiteUrl": "https://example.com/companies/prohaska-kuhn",
"logoUrl": "https://picsum.photos/seed/company-77/200/200",
"isHiring": true,
"createdAt": "2018-06-05T09:49:05.971Z"
}