example-data.com
Menu
Browse docs and collections

Overview

companies / #26

Windler Group

Windler Group

Size
32003 employees
Founded
2022
Location
MA

Integrated eco-centric analyzer

Component variants

Related

Referenced by

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/companies/26" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/companies/26"
);
const company = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/companies.d.ts https://example-data.com/types/companies.d.ts
import type { Company } from "./types/companies";

const res = await fetch(
  "https://example-data.com/api/v1/companies/26"
);
const company = (await res.json()) as Company;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/companies/26"
)
companie = res.json()

Response

{
  "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"
}