Fadel Inc
- Size
- 12183 employees
- Founded
- 2003
- Website
- https://www.fadel-inc.com
- Location
- NZ
Polarised executive process improvement
companies / #44
Polarised executive process improvement
curl -sS \
"https://example-data.com/api/v1/companies/44" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/44"
);
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/44"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/44"
)
companie = res.json() {
"id": 44,
"name": "Fadel Inc",
"slug": "fadel-inc-44",
"description": "Polarised executive process improvement",
"industryId": 5,
"headquartersCountryAlpha2": "NZ",
"employeeCount": 12183,
"foundedYear": 2003,
"websiteUrl": "https://www.fadel-inc.com",
"logoUrl": "https://picsum.photos/seed/company-44/200/200",
"isHiring": false,
"createdAt": "2014-12-29T22:59:40.148Z"
}