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