example-data.com

companies / #29

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/29"
)
companie = res.json()
{
  "id": 29,
  "name": "Hessel and Sons",
  "slug": "hessel-and-sons-29",
  "description": "Optimized logistical instruction set",
  "industryId": 9,
  "headquartersCountryAlpha2": "SA",
  "employeeCount": 43634,
  "foundedYear": 1946,
  "websiteUrl": "https://www.hessel-and-sons.com",
  "logoUrl": "https://picsum.photos/seed/company-29/200/200",
  "isHiring": false,
  "createdAt": "2025-04-26T00:22:57.480Z"
}
Draftbit