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