example-data.com

companies / #18

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/18"
)
companie = res.json()
{
  "id": 18,
  "name": "Schmeler - Muller",
  "slug": "schmeler-muller-18",
  "description": "Polarised system-worthy policy",
  "industryId": 2,
  "headquartersCountryAlpha2": "PH",
  "employeeCount": 45648,
  "foundedYear": 1961,
  "websiteUrl": "https://www.schmeler-muller.com",
  "logoUrl": "https://picsum.photos/seed/company-18/200/200",
  "isHiring": false,
  "createdAt": "2014-04-29T21:10:22.245Z"
}
Draftbit