Lebsack - Miller
- Size
- 26584 employees
- Founded
- 2009
- Website
- https://www.lebsack-miller.com
- Location
- ZA
Profit-focused intangible time-frame
companies / #32
Profit-focused intangible time-frame
curl -sS \
"https://example-data.com/api/v1/companies/32" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/32"
);
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/32"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/32"
)
companie = res.json() {
"id": 32,
"name": "Lebsack - Miller",
"slug": "lebsack-miller-32",
"description": "Profit-focused intangible time-frame",
"industryId": 37,
"headquartersCountryAlpha2": "ZA",
"employeeCount": 26584,
"foundedYear": 2009,
"websiteUrl": "https://www.lebsack-miller.com",
"logoUrl": "https://picsum.photos/seed/company-32/200/200",
"isHiring": true,
"createdAt": "2017-05-11T10:31:19.956Z"
}