example-data.com

companies / #47

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/47"
)
companie = res.json()
{
  "id": 47,
  "name": "Ziemann and Sons",
  "slug": "ziemann-and-sons-47",
  "description": "Robust asymmetric internet solution",
  "industryId": null,
  "headquartersCountryAlpha2": "BE",
  "employeeCount": 38773,
  "foundedYear": 2012,
  "websiteUrl": "https://www.ziemann-and-sons.com",
  "logoUrl": "https://picsum.photos/seed/company-47/200/200",
  "isHiring": false,
  "createdAt": "2016-02-05T22:23:56.305Z"
}
Draftbit