example-data.com

companies / #70

Maggio LLC

Maggio LLC

Size
6936 employees
Founded
2010
Location
ZA

Proactive zero tolerance productivity

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/70"
)
companie = res.json()
{
  "id": 70,
  "name": "Maggio LLC",
  "slug": "maggio-llc-70",
  "description": "Proactive zero tolerance productivity",
  "industryId": 31,
  "headquartersCountryAlpha2": "ZA",
  "employeeCount": 6936,
  "foundedYear": 2010,
  "websiteUrl": null,
  "logoUrl": "https://picsum.photos/seed/company-70/200/200",
  "isHiring": false,
  "createdAt": "2018-07-07T08:46:06.346Z"
}
Draftbit