Jenkins Inc
- Size
- 30393 employees
- Founded
- 1972
- Location
- GR
Devolved logistical matrix
Overview
companies / #51
Devolved logistical matrix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/51" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/51" ); 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/51"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/51"
)
companie = res.json() Response
{
"id": 51,
"name": "Jenkins Inc",
"slug": "jenkins-inc-51",
"description": "Devolved logistical matrix",
"industryId": 30,
"headquartersCountryAlpha2": "GR",
"employeeCount": 30393,
"foundedYear": 1972,
"websiteUrl": "https://example.com/companies/jenkins-inc",
"logoUrl": "https://picsum.photos/seed/company-51/200/200",
"isHiring": true,
"createdAt": "2019-02-02T04:41:39.110Z"
}