Mitchell, Nitzsche and Hammes
- Size
- 6499 employees
- Founded
- 1977
- Location
- EG
Progressive motivating core
Overview
companies / #17
Progressive motivating core
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/17" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/17" ); 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/17"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/17"
)
companie = res.json() Response
{
"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"
}