Murray, Towne and Miller
- Size
- 16045 employees
- Founded
- 1966
- Location
- JP
Optimized systemic orchestration
companies / #57
Optimized systemic orchestration
curl -sS \
"https://example-data.com/api/v1/companies/57" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/57"
);
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/57"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/57"
)
companie = res.json() {
"id": 57,
"name": "Murray, Towne and Miller",
"slug": "murray-towne-and-miller-57",
"description": "Optimized systemic orchestration",
"industryId": 17,
"headquartersCountryAlpha2": "JP",
"employeeCount": 16045,
"foundedYear": 1966,
"websiteUrl": "https://www.murray-towne-and-miller.com",
"logoUrl": "https://picsum.photos/seed/company-57/200/200",
"isHiring": true,
"createdAt": "2022-03-26T15:14:27.021Z"
}