example-data.com

companies / #53

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/53"
)
companie = res.json()
{
  "id": 53,
  "name": "Hermiston Inc",
  "slug": "hermiston-inc-53",
  "description": "Ergonomic methodical interface",
  "industryId": 1,
  "headquartersCountryAlpha2": "ET",
  "employeeCount": 37249,
  "foundedYear": 2008,
  "websiteUrl": "https://www.hermiston-inc.com",
  "logoUrl": "https://picsum.photos/seed/company-53/200/200",
  "isHiring": false,
  "createdAt": "2015-05-08T15:47:30.187Z"
}
Draftbit