Jakubowski - Crona
- Size
- 19378 employees
- Founded
- 1999
- Location
- SA
Configurable optimizing orchestration
Overview
companies / #38
Configurable optimizing orchestration
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/38" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/38" ); 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/38"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/38"
)
companie = res.json() Response
{
"id": 38,
"name": "Jakubowski - Crona",
"slug": "jakubowski-crona-38",
"description": "Configurable optimizing orchestration",
"industryId": 32,
"headquartersCountryAlpha2": "SA",
"employeeCount": 19378,
"foundedYear": 1999,
"websiteUrl": "https://example.com/companies/jakubowski-crona",
"logoUrl": "https://picsum.photos/seed/company-38/200/200",
"isHiring": true,
"createdAt": "2015-08-08T17:38:47.517Z"
}