Barrows, Stanton and Kling
- Size
- 49632 employees
- Founded
- 1996
- Location
- DE
Extended hybrid strategy
companies / #45
Extended hybrid strategy
curl -sS \
"https://example-data.com/api/v1/companies/45" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/45"
);
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/45"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/45"
)
companie = res.json() {
"id": 45,
"name": "Barrows, Stanton and Kling",
"slug": "barrows-stanton-and-kling-45",
"description": "Extended hybrid strategy",
"industryId": 9,
"headquartersCountryAlpha2": "DE",
"employeeCount": 49632,
"foundedYear": 1996,
"websiteUrl": "https://www.barrows-stanton-and-kling.com",
"logoUrl": "https://picsum.photos/seed/company-45/200/200",
"isHiring": false,
"createdAt": "2023-12-24T07:42:13.156Z"
}