example-data.com

companies / #52

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/52"
)
companie = res.json()
{
  "id": 52,
  "name": "Bernier LLC",
  "slug": "bernier-llc-52",
  "description": "Robust coherent hardware",
  "industryId": 10,
  "headquartersCountryAlpha2": "NZ",
  "employeeCount": 12588,
  "foundedYear": 1982,
  "websiteUrl": "https://www.bernier-llc.com",
  "logoUrl": "https://picsum.photos/seed/company-52/200/200",
  "isHiring": true,
  "createdAt": "2019-08-24T10:11:03.461Z"
}
Draftbit