example-data.com

companies / #41

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/41"
)
companie = res.json()
{
  "id": 41,
  "name": "Grimes - Robel",
  "slug": "grimes-robel-41",
  "description": "User-centric logistical productivity",
  "industryId": 25,
  "headquartersCountryAlpha2": "CL",
  "employeeCount": 20095,
  "foundedYear": 1957,
  "websiteUrl": "https://www.grimes-robel.com",
  "logoUrl": "https://picsum.photos/seed/company-41/200/200",
  "isHiring": true,
  "createdAt": "2014-05-17T19:48:48.368Z"
}
Draftbit