Schroeder, Pacocha and Mayert
- Size
- 47831 employees
- Founded
- 1960
- Location
- JP
Optional disintermediate alliance
companies / #10
Optional disintermediate alliance
curl -sS \
"https://example-data.com/api/v1/companies/10" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/10"
);
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/10"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/10"
)
companie = res.json() {
"id": 10,
"name": "Schroeder, Pacocha and Mayert",
"slug": "schroeder-pacocha-and-mayert-10",
"description": "Optional disintermediate alliance",
"industryId": null,
"headquartersCountryAlpha2": "JP",
"employeeCount": 47831,
"foundedYear": 1960,
"websiteUrl": "https://www.schroeder-pacocha-and-mayert.com",
"logoUrl": "https://picsum.photos/seed/company-10/200/200",
"isHiring": false,
"createdAt": "2014-03-26T05:36:14.163Z"
}