example-data.com

companies / #9

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/9"
)
companie = res.json()
{
  "id": 9,
  "name": "Armstrong, Howe and Wiegand",
  "slug": "armstrong-howe-and-wiegand-9",
  "description": "Visionary modular analyzer",
  "industryId": 11,
  "headquartersCountryAlpha2": "SG",
  "employeeCount": 28496,
  "foundedYear": 1958,
  "websiteUrl": "https://www.armstrong-howe-and-wiegand.com",
  "logoUrl": "https://picsum.photos/seed/company-9/200/200",
  "isHiring": true,
  "createdAt": "2019-11-21T08:12:41.823Z"
}
Draftbit