example-data.com

companies / #71

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/71"
)
companie = res.json()
{
  "id": 71,
  "name": "Littel, Rodriguez and McDermott",
  "slug": "littel-rodriguez-and-mcdermott-71",
  "description": "Secured static service-desk",
  "industryId": 19,
  "headquartersCountryAlpha2": "GB",
  "employeeCount": 34009,
  "foundedYear": 1998,
  "websiteUrl": "https://www.littel-rodriguez-and-mcdermott.com",
  "logoUrl": "https://picsum.photos/seed/company-71/200/200",
  "isHiring": true,
  "createdAt": "2016-04-15T14:37:18.469Z"
}
Draftbit