example-data.com

companies / #54

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/54"
)
companie = res.json()
{
  "id": 54,
  "name": "Leuschke - McCullough",
  "slug": "leuschke-mccullough-54",
  "description": "Expanded systemic middleware",
  "industryId": null,
  "headquartersCountryAlpha2": "ET",
  "employeeCount": 41802,
  "foundedYear": 1991,
  "websiteUrl": "https://www.leuschke-mccullough.com",
  "logoUrl": "https://picsum.photos/seed/company-54/200/200",
  "isHiring": true,
  "createdAt": "2021-04-05T20:45:54.723Z"
}
Draftbit