Waelchi - O'Connell
- Size
- 23361 employees
- Founded
- 2013
- Location
- AT
Intuitive tangible open architecture
Overview
companies / #79
Intuitive tangible open architecture
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/79" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/79" ); 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/79"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/79"
)
companie = res.json() Response
{
"id": 79,
"name": "Waelchi - O'Connell",
"slug": "waelchi-o-connell-79",
"description": "Intuitive tangible open architecture",
"industryId": null,
"headquartersCountryAlpha2": "AT",
"employeeCount": 23361,
"foundedYear": 2013,
"websiteUrl": "https://example.com/companies/waelchi-o-connell",
"logoUrl": "https://picsum.photos/seed/company-79/200/200",
"isHiring": false,
"createdAt": "2022-12-29T00:00:51.227Z"
}