Erdman - Sauer
- Size
- 36933 employees
- Founded
- 2017
- Location
- NG
User-centric homogeneous challenge
companies / #72
User-centric homogeneous challenge
curl -sS \
"https://example-data.com/api/v1/companies/72" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/72"
);
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/72"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/72"
)
companie = res.json() {
"id": 72,
"name": "Erdman - Sauer",
"slug": "erdman-sauer-72",
"description": "User-centric homogeneous challenge",
"industryId": 14,
"headquartersCountryAlpha2": "NG",
"employeeCount": 36933,
"foundedYear": 2017,
"websiteUrl": null,
"logoUrl": "https://picsum.photos/seed/company-72/200/200",
"isHiring": true,
"createdAt": "2013-02-06T02:45:35.437Z"
}