Zulauf LLC
- Size
- 30 employees
- Founded
- 2016
- Website
- https://www.zulauf-llc.com
- Location
- PL
Profit-focused 24 hour intranet
companies / #4
Profit-focused 24 hour intranet
curl -sS \
"https://example-data.com/api/v1/companies/4" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/4"
);
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/4"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/4"
)
companie = res.json() {
"id": 4,
"name": "Zulauf LLC",
"slug": "zulauf-llc-4",
"description": "Profit-focused 24 hour intranet",
"industryId": 22,
"headquartersCountryAlpha2": "PL",
"employeeCount": 30,
"foundedYear": 2016,
"websiteUrl": "https://www.zulauf-llc.com",
"logoUrl": "https://picsum.photos/seed/company-4/200/200",
"isHiring": true,
"createdAt": "2023-02-26T15:01:30.827Z"
}