Grimes and Sons
- Size
- 25088 employees
- Founded
- 2018
- Website
- https://www.grimes-and-sons.com
- Location
- ID
Proactive logistical migration
companies / #59
Proactive logistical migration
curl -sS \
"https://example-data.com/api/v1/companies/59" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/59"
);
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/59"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/59"
)
companie = res.json() {
"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://www.grimes-and-sons.com",
"logoUrl": "https://picsum.photos/seed/company-59/200/200",
"isHiring": false,
"createdAt": "2021-07-21T03:43:15.033Z"
}