Erdman - Sauer
- Size
- 36933 employees
- Founded
- 2017
- Location
- NG
User-centric homogeneous challenge
Overview
companies / #72
User-centric homogeneous challenge
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/72" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/72" ); 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/72"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/72"
)
companie = res.json() Response
{
"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"
}