example-data.com

companies / #26

Windler Group

Windler Group

Size
32003 employees
Founded
2022
Location
MA

Integrated eco-centric analyzer

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/companies/26"
)
companie = res.json()
{
  "id": 26,
  "name": "Windler Group",
  "slug": "windler-group-26",
  "description": "Integrated eco-centric analyzer",
  "industryId": 14,
  "headquartersCountryAlpha2": "MA",
  "employeeCount": 32003,
  "foundedYear": 2022,
  "websiteUrl": null,
  "logoUrl": "https://picsum.photos/seed/company-26/200/200",
  "isHiring": false,
  "createdAt": "2016-08-08T09:47:57.075Z"
}
Draftbit