example-data.com

companies / #14

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/14"
)
companie = res.json()
{
  "id": 14,
  "name": "Yundt, Gerlach and Emard",
  "slug": "yundt-gerlach-and-emard-14",
  "description": "Streamlined optimal installation",
  "industryId": 30,
  "headquartersCountryAlpha2": "BE",
  "employeeCount": 17656,
  "foundedYear": 2015,
  "websiteUrl": "https://www.yundt-gerlach-and-emard.com",
  "logoUrl": "https://picsum.photos/seed/company-14/200/200",
  "isHiring": true,
  "createdAt": "2025-10-09T10:27:30.701Z"
}
Draftbit