Wisozk Inc
- Size
- 46312 employees
- Founded
- 1975
- Location
- PH
Customer-focused maximized task-force
companies / #33
Customer-focused maximized task-force
curl -sS \
"https://example-data.com/api/v1/companies/33" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/33"
);
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/33"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/33"
)
companie = res.json() {
"id": 33,
"name": "Wisozk Inc",
"slug": "wisozk-inc-33",
"description": "Customer-focused maximized task-force",
"industryId": 34,
"headquartersCountryAlpha2": "PH",
"employeeCount": 46312,
"foundedYear": 1975,
"websiteUrl": null,
"logoUrl": "https://picsum.photos/seed/company-33/200/200",
"isHiring": true,
"createdAt": "2018-05-18T21:23:05.532Z"
}