Powlowski, Senger and Wisoky
- Size
- 10497 employees
- Founded
- 1982
- Location
- NG
Progressive actuating knowledge user
Overview
companies / #16
Progressive actuating knowledge user
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/16" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/16" ); 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/16"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/16"
)
companie = res.json() Response
{
"id": 16,
"name": "Powlowski, Senger and Wisoky",
"slug": "powlowski-senger-and-wisoky-16",
"description": "Progressive actuating knowledge user",
"industryId": 5,
"headquartersCountryAlpha2": "NG",
"employeeCount": 10497,
"foundedYear": 1982,
"websiteUrl": "https://example.com/companies/powlowski-senger-and-wisoky",
"logoUrl": "https://picsum.photos/seed/company-16/200/200",
"isHiring": false,
"createdAt": "2012-06-30T00:10:52.527Z"
}