example-data.com

companies / #69

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/69"
)
companie = res.json()
{
  "id": 69,
  "name": "Koss Group",
  "slug": "koss-group-69",
  "description": "Persistent disintermediate functionalities",
  "industryId": 21,
  "headquartersCountryAlpha2": "SE",
  "employeeCount": 40559,
  "foundedYear": 2023,
  "websiteUrl": "https://www.koss-group.com",
  "logoUrl": "https://picsum.photos/seed/company-69/200/200",
  "isHiring": true,
  "createdAt": "2019-04-12T07:02:38.201Z"
}
Draftbit