Corkery, Wolf and Franey
- Size
- 15624 employees
- Founded
- 2006
- Location
- AE
Persistent well-modulated workforce
Overview
companies / #2
Persistent well-modulated workforce
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/2" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/2" ); 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/2"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/2"
)
companie = res.json() Response
{
"id": 2,
"name": "Corkery, Wolf and Franey",
"slug": "corkery-wolf-and-franey-2",
"description": "Persistent well-modulated workforce",
"industryId": 5,
"headquartersCountryAlpha2": "AE",
"employeeCount": 15624,
"foundedYear": 2006,
"websiteUrl": "https://example.com/companies/corkery-wolf-and-franey",
"logoUrl": "https://picsum.photos/seed/company-2/200/200",
"isHiring": true,
"createdAt": "2012-01-14T08:45:37.052Z"
}