example-data.com

companies / #15

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/15"
)
companie = res.json()
{
  "id": 15,
  "name": "Metz, Adams and Friesen",
  "slug": "metz-adams-and-friesen-15",
  "description": "Visionary cloud-native internet solution",
  "industryId": 26,
  "headquartersCountryAlpha2": "DE",
  "employeeCount": 25708,
  "foundedYear": 1964,
  "websiteUrl": "https://www.metz-adams-and-friesen.com",
  "logoUrl": "https://picsum.photos/seed/company-15/200/200",
  "isHiring": false,
  "createdAt": "2018-09-02T18:49:57.197Z"
}
Draftbit