Turcotte, Nikolaus and Ruecker
- Size
- 37719 employees
- Founded
- 2024
- Location
- DE
Reverse-engineered high-level intranet
Overview
companies / #22
Reverse-engineered high-level intranet
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/22" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/22" ); 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/22"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/22"
)
companie = res.json() Response
{
"id": 22,
"name": "Turcotte, Nikolaus and Ruecker",
"slug": "turcotte-nikolaus-and-ruecker-22",
"description": "Reverse-engineered high-level intranet",
"industryId": 8,
"headquartersCountryAlpha2": "DE",
"employeeCount": 37719,
"foundedYear": 2024,
"websiteUrl": "https://example.com/companies/turcotte-nikolaus-and-ruecker",
"logoUrl": "https://picsum.photos/seed/company-22/200/200",
"isHiring": true,
"createdAt": "2013-06-14T08:48:49.659Z"
}