Muller, Bernhard and Aufderhar
- Size
- 9524 employees
- Founded
- 1995
- Location
- NZ
Phased context-sensitive system engine
companies / #48
Phased context-sensitive system engine
curl -sS \
"https://example-data.com/api/v1/companies/48" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/48"
);
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/48"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/48"
)
companie = res.json() {
"id": 48,
"name": "Muller, Bernhard and Aufderhar",
"slug": "muller-bernhard-and-aufderhar-48",
"description": "Phased context-sensitive system engine",
"industryId": 9,
"headquartersCountryAlpha2": "NZ",
"employeeCount": 9524,
"foundedYear": 1995,
"websiteUrl": "https://www.muller-bernhard-and-aufderhar.com",
"logoUrl": "https://picsum.photos/seed/company-48/200/200",
"isHiring": true,
"createdAt": "2016-06-17T23:54:08.609Z"
}