Osinski Inc
- Size
- 9954 employees
- Founded
- 1981
- Website
- https://www.osinski-inc.com
- Location
- KE
Immersive eco-centric open architecture
companies / #31
Immersive eco-centric open architecture
curl -sS \
"https://example-data.com/api/v1/companies/31" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/31"
);
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/31"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/31"
)
companie = res.json() {
"id": 31,
"name": "Osinski Inc",
"slug": "osinski-inc-31",
"description": "Immersive eco-centric open architecture",
"industryId": 12,
"headquartersCountryAlpha2": "KE",
"employeeCount": 9954,
"foundedYear": 1981,
"websiteUrl": "https://www.osinski-inc.com",
"logoUrl": "https://picsum.photos/seed/company-31/200/200",
"isHiring": false,
"createdAt": "2018-12-23T02:37:03.047Z"
}