example-data.com

companies / #74

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/74"
)
companie = res.json()
{
  "id": 74,
  "name": "Kozey Group",
  "slug": "kozey-group-74",
  "description": "Universal logistical neural-net",
  "industryId": null,
  "headquartersCountryAlpha2": "MA",
  "employeeCount": 23593,
  "foundedYear": 2010,
  "websiteUrl": "https://www.kozey-group.com",
  "logoUrl": "https://picsum.photos/seed/company-74/200/200",
  "isHiring": false,
  "createdAt": "2019-05-08T13:33:13.605Z"
}
Draftbit