example-data.com

companies / #64

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/64"
)
companie = res.json()
{
  "id": 64,
  "name": "Roberts, Greenfelder and Kuhlman",
  "slug": "roberts-greenfelder-and-kuhlman-64",
  "description": "Decentralized zero tolerance challenge",
  "industryId": 28,
  "headquartersCountryAlpha2": "NO",
  "employeeCount": 39819,
  "foundedYear": 1969,
  "websiteUrl": "https://www.roberts-greenfelder-and-kuhlma.com",
  "logoUrl": "https://picsum.photos/seed/company-64/200/200",
  "isHiring": false,
  "createdAt": "2013-01-18T22:17:56.686Z"
}
Draftbit