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