example-data.com

companies / #79

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/79"
)
companie = res.json()
{
  "id": 79,
  "name": "Waelchi - O'Connell",
  "slug": "waelchi-o-connell-79",
  "description": "Intuitive tangible open architecture",
  "industryId": null,
  "headquartersCountryAlpha2": "AT",
  "employeeCount": 23361,
  "foundedYear": 2013,
  "websiteUrl": "https://www.waelchi-o-connell.com",
  "logoUrl": "https://picsum.photos/seed/company-79/200/200",
  "isHiring": false,
  "createdAt": "2022-12-29T00:00:51.227Z"
}
Draftbit