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