Ritchie Group
- Size
- 8274 employees
- Founded
- 1948
- Location
- US
Adaptive intangible collaboration
Overview
companies / #28
Adaptive intangible collaboration
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/28" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/28" ); 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/28"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/28"
)
companie = res.json() Response
{
"id": 28,
"name": "Ritchie Group",
"slug": "ritchie-group-28",
"description": "Adaptive intangible collaboration",
"industryId": 16,
"headquartersCountryAlpha2": "US",
"employeeCount": 8274,
"foundedYear": 1948,
"websiteUrl": "https://example.com/companies/ritchie-group",
"logoUrl": "https://picsum.photos/seed/company-28/200/200",
"isHiring": false,
"createdAt": "2015-09-14T07:43:09.882Z"
}