example-data.com

companies / #31

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/31"
)
companie = res.json()
{
  "id": 31,
  "name": "Osinski Inc",
  "slug": "osinski-inc-31",
  "description": "Immersive eco-centric open architecture",
  "industryId": 12,
  "headquartersCountryAlpha2": "KE",
  "employeeCount": 9954,
  "foundedYear": 1981,
  "websiteUrl": "https://www.osinski-inc.com",
  "logoUrl": "https://picsum.photos/seed/company-31/200/200",
  "isHiring": false,
  "createdAt": "2018-12-23T02:37:03.047Z"
}
Draftbit