example-data.com

companies / #61

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/61"
)
companie = res.json()
{
  "id": 61,
  "name": "Romaguera Inc",
  "slug": "romaguera-inc-61",
  "description": "Organized fresh-thinking installation",
  "industryId": 34,
  "headquartersCountryAlpha2": "ZA",
  "employeeCount": 18246,
  "foundedYear": 1950,
  "websiteUrl": "https://www.romaguera-inc.com",
  "logoUrl": "https://picsum.photos/seed/company-61/200/200",
  "isHiring": true,
  "createdAt": "2023-08-03T18:01:34.442Z"
}
Draftbit