example-data.com

companies / #78

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/78"
)
companie = res.json()
{
  "id": 78,
  "name": "Klocko - Gutmann",
  "slug": "klocko-gutmann-78",
  "description": "Networked global adapter",
  "industryId": 4,
  "headquartersCountryAlpha2": "FR",
  "employeeCount": 46687,
  "foundedYear": 1976,
  "websiteUrl": "https://www.klocko-gutmann.com",
  "logoUrl": "https://picsum.photos/seed/company-78/200/200",
  "isHiring": true,
  "createdAt": "2023-08-03T18:02:17.878Z"
}
Draftbit