example-data.com

companies / #37

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/37"
)
companie = res.json()
{
  "id": 37,
  "name": "Goldner and Sons",
  "slug": "goldner-and-sons-37",
  "description": "Intuitive 24 hour generative AI",
  "industryId": 16,
  "headquartersCountryAlpha2": "NL",
  "employeeCount": 37533,
  "foundedYear": 1974,
  "websiteUrl": "https://www.goldner-and-sons.com",
  "logoUrl": "https://picsum.photos/seed/company-37/200/200",
  "isHiring": true,
  "createdAt": "2016-09-13T16:38:59.826Z"
}
Draftbit