Grimes - Robel
- Size
- 20095 employees
- Founded
- 1957
- Location
- CL
User-centric logistical productivity
Overview
companies / #41
User-centric logistical productivity
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/41" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/41" ); 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/41"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/41"
)
companie = res.json() Response
{
"id": 41,
"name": "Grimes - Robel",
"slug": "grimes-robel-41",
"description": "User-centric logistical productivity",
"industryId": 25,
"headquartersCountryAlpha2": "CL",
"employeeCount": 20095,
"foundedYear": 1957,
"websiteUrl": "https://example.com/companies/grimes-robel",
"logoUrl": "https://picsum.photos/seed/company-41/200/200",
"isHiring": true,
"createdAt": "2014-05-17T19:48:48.368Z"
}