example-data.com

companies / #16

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/16"
)
companie = res.json()
{
  "id": 16,
  "name": "Powlowski, Senger and Wisoky",
  "slug": "powlowski-senger-and-wisoky-16",
  "description": "Progressive actuating knowledge user",
  "industryId": 5,
  "headquartersCountryAlpha2": "NG",
  "employeeCount": 10497,
  "foundedYear": 1982,
  "websiteUrl": "https://www.powlowski-senger-and-wisoky.com",
  "logoUrl": "https://picsum.photos/seed/company-16/200/200",
  "isHiring": false,
  "createdAt": "2012-06-30T00:10:52.527Z"
}
Draftbit