example-data.com

companies / #25

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/25"
)
companie = res.json()
{
  "id": 25,
  "name": "Ondricka, Bosco and Donnelly",
  "slug": "ondricka-bosco-and-donnelly-25",
  "description": "Horizontal high-level pricing structure",
  "industryId": 8,
  "headquartersCountryAlpha2": "CA",
  "employeeCount": 46144,
  "foundedYear": 1999,
  "websiteUrl": "https://www.ondricka-bosco-and-donnelly.com",
  "logoUrl": "https://picsum.photos/seed/company-25/200/200",
  "isHiring": false,
  "createdAt": "2024-08-19T01:58:36.072Z"
}
Draftbit