example-data.com

companies / #62

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/62"
)
companie = res.json()
{
  "id": 62,
  "name": "Upton and Sons",
  "slug": "upton-and-sons-62",
  "description": "Adaptive systematic internet solution",
  "industryId": 4,
  "headquartersCountryAlpha2": "BE",
  "employeeCount": 4712,
  "foundedYear": 1991,
  "websiteUrl": "https://www.upton-and-sons.com",
  "logoUrl": "https://picsum.photos/seed/company-62/200/200",
  "isHiring": false,
  "createdAt": "2021-07-18T12:10:35.364Z"
}
Draftbit