Grimes and Sons
- Size
- 25088 employees
- Founded
- 2018
- Location
- ID
Proactive logistical migration
Overview
companies / #59
Proactive logistical migration
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/59" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/59" ); 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/59"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/59"
)
companie = res.json() Response
{
"id": 59,
"name": "Grimes and Sons",
"slug": "grimes-and-sons-59",
"description": "Proactive logistical migration",
"industryId": 31,
"headquartersCountryAlpha2": "ID",
"employeeCount": 25088,
"foundedYear": 2018,
"websiteUrl": "https://example.com/companies/grimes-and-sons",
"logoUrl": "https://picsum.photos/seed/company-59/200/200",
"isHiring": false,
"createdAt": "2021-07-21T03:43:15.033Z"
}