Harvey Group
- Size
- 40876 employees
- Founded
- 1954
- Website
- https://www.harvey-group.com
- Location
- ET
Optional regional focus group
companies / #20
Optional regional focus group
curl -sS \
"https://example-data.com/api/v1/companies/20" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/20"
);
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/20"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/20"
)
companie = res.json() {
"id": 20,
"name": "Harvey Group",
"slug": "harvey-group-20",
"description": "Optional regional focus group",
"industryId": 22,
"headquartersCountryAlpha2": "ET",
"employeeCount": 40876,
"foundedYear": 1954,
"websiteUrl": "https://www.harvey-group.com",
"logoUrl": "https://picsum.photos/seed/company-20/200/200",
"isHiring": true,
"createdAt": "2017-02-13T15:27:06.385Z"
}