Mitchell, Nitzsche and Hammes
- Size
- 6499 employees
- Founded
- 1977
- Location
- EG
Progressive motivating core
companies / #17
Progressive motivating core
curl -sS \
"https://example-data.com/api/v1/companies/17" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/17"
);
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/17"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/17"
)
companie = res.json() {
"id": 17,
"name": "Mitchell, Nitzsche and Hammes",
"slug": "mitchell-nitzsche-and-hammes-17",
"description": "Progressive motivating core",
"industryId": 24,
"headquartersCountryAlpha2": "EG",
"employeeCount": 6499,
"foundedYear": 1977,
"websiteUrl": null,
"logoUrl": "https://picsum.photos/seed/company-17/200/200",
"isHiring": false,
"createdAt": "2017-03-03T19:30:48.712Z"
}