Hermiston Inc
- Size
- 37249 employees
- Founded
- 2008
- Website
- https://www.hermiston-inc.com
- Location
- ET
Ergonomic methodical interface
companies / #53
Ergonomic methodical interface
curl -sS \
"https://example-data.com/api/v1/companies/53" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/53"
);
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/53"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/53"
)
companie = res.json() {
"id": 53,
"name": "Hermiston Inc",
"slug": "hermiston-inc-53",
"description": "Ergonomic methodical interface",
"industryId": 1,
"headquartersCountryAlpha2": "ET",
"employeeCount": 37249,
"foundedYear": 2008,
"websiteUrl": "https://www.hermiston-inc.com",
"logoUrl": "https://picsum.photos/seed/company-53/200/200",
"isHiring": false,
"createdAt": "2015-05-08T15:47:30.187Z"
}