example-data.com

companies / #50

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/50"
)
companie = res.json()
{
  "id": 50,
  "name": "Simonis and Sons",
  "slug": "simonis-and-sons-50",
  "description": "Total needs-based core",
  "industryId": 8,
  "headquartersCountryAlpha2": "MY",
  "employeeCount": 44089,
  "foundedYear": 1998,
  "websiteUrl": "https://www.simonis-and-sons.com",
  "logoUrl": "https://picsum.photos/seed/company-50/200/200",
  "isHiring": true,
  "createdAt": "2011-11-14T02:31:23.086Z"
}
Draftbit