Armstrong, Howe and Wiegand
- Size
- 28496 employees
- Founded
- 1958
- Location
- SG
Visionary modular analyzer
Overview
companies / #9
Visionary modular analyzer
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/9" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/9" ); 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/9"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/9"
)
companie = res.json() Response
{
"id": 9,
"name": "Armstrong, Howe and Wiegand",
"slug": "armstrong-howe-and-wiegand-9",
"description": "Visionary modular analyzer",
"industryId": 11,
"headquartersCountryAlpha2": "SG",
"employeeCount": 28496,
"foundedYear": 1958,
"websiteUrl": "https://example.com/companies/armstrong-howe-and-wiegand",
"logoUrl": "https://picsum.photos/seed/company-9/200/200",
"isHiring": true,
"createdAt": "2019-11-21T08:12:41.823Z"
}