example-data.com

companies / #77

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/77"
)
companie = res.json()
{
  "id": 77,
  "name": "Prohaska - Kuhn",
  "slug": "prohaska-kuhn-77",
  "description": "Versatile neutral software",
  "industryId": 7,
  "headquartersCountryAlpha2": "DK",
  "employeeCount": 4369,
  "foundedYear": 1946,
  "websiteUrl": "https://www.prohaska-kuhn.com",
  "logoUrl": "https://picsum.photos/seed/company-77/200/200",
  "isHiring": true,
  "createdAt": "2018-06-05T09:49:05.971Z"
}
Draftbit