example-data.com

companies / #28

Component variants

curl -sS \
  "https://example-data.com/api/v1/companies/28" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/companies/28"
);
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/28"
);
const companie = (await res.json()) as Companie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/companies/28"
)
companie = res.json()
{
  "id": 28,
  "name": "Ritchie Group",
  "slug": "ritchie-group-28",
  "description": "Adaptive intangible collaboration",
  "industryId": 16,
  "headquartersCountryAlpha2": "US",
  "employeeCount": 8274,
  "foundedYear": 1948,
  "websiteUrl": "https://www.ritchie-group.com",
  "logoUrl": "https://picsum.photos/seed/company-28/200/200",
  "isHiring": false,
  "createdAt": "2015-09-14T07:43:09.882Z"
}
Draftbit