example-data.com

companies / #5

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/5"
)
companie = res.json()
{
  "id": 5,
  "name": "Wolff - O'Connell",
  "slug": "wolff-o-connell-5",
  "description": "Robust disintermediate toolset",
  "industryId": 5,
  "headquartersCountryAlpha2": "SA",
  "employeeCount": 46927,
  "foundedYear": 1948,
  "websiteUrl": "https://www.wolff-o-connell.com",
  "logoUrl": "https://picsum.photos/seed/company-5/200/200",
  "isHiring": true,
  "createdAt": "2014-02-09T05:35:34.248Z"
}
Draftbit