Wisozk Inc
- Size
- 46312 employees
- Founded
- 1975
- Location
- PH
Customer-focused maximized task-force
Overview
companies / #33
Customer-focused maximized task-force
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/33" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/33" ); 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/33"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/33"
)
companie = res.json() Response
{
"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"
}