example-data.com

companies / #73

Kuphal LLC

Kuphal LLC

Size
47296 employees
Founded
2004
Location
AR

Enhanced attitude-oriented middleware

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/73"
)
companie = res.json()
{
  "id": 73,
  "name": "Kuphal LLC",
  "slug": "kuphal-llc-73",
  "description": "Enhanced attitude-oriented middleware",
  "industryId": 1,
  "headquartersCountryAlpha2": "AR",
  "employeeCount": 47296,
  "foundedYear": 2004,
  "websiteUrl": null,
  "logoUrl": "https://picsum.photos/seed/company-73/200/200",
  "isHiring": false,
  "createdAt": "2012-09-10T10:29:12.542Z"
}
Draftbit