Jenkins Inc
- Size
- 30393 employees
- Founded
- 1972
- Website
- https://www.jenkins-inc.com
- Location
- GR
Devolved logistical matrix
companies / #51
Devolved logistical matrix
curl -sS \
"https://example-data.com/api/v1/companies/51" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/51"
);
const companie = await res.json();import type { Companie } from "https://example-data.com/types/companies.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/companies/51"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/51"
)
companie = res.json() {
"id": 51,
"name": "Jenkins Inc",
"slug": "jenkins-inc-51",
"description": "Devolved logistical matrix",
"industryId": 30,
"headquartersCountryAlpha2": "GR",
"employeeCount": 30393,
"foundedYear": 1972,
"websiteUrl": "https://www.jenkins-inc.com",
"logoUrl": "https://picsum.photos/seed/company-51/200/200",
"isHiring": true,
"createdAt": "2019-02-02T04:41:39.110Z"
}