example-data.com

companies / #3

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/3"
)
companie = res.json()
{
  "id": 3,
  "name": "Mante - Carter",
  "slug": "mante-carter-3",
  "description": "Open-architected immersive neural-net",
  "industryId": 12,
  "headquartersCountryAlpha2": "AR",
  "employeeCount": 37006,
  "foundedYear": 1983,
  "websiteUrl": "https://www.mante-carter.com",
  "logoUrl": "https://picsum.photos/seed/company-3/200/200",
  "isHiring": false,
  "createdAt": "2025-02-09T15:45:11.161Z"
}
Draftbit