Price - Rolfson
- Size
- 2782 employees
- Founded
- 1981
- Website
- https://www.price-rolfson.com
- Location
- EG
Business-focused motivating help-desk
companies / #67
Business-focused motivating help-desk
curl -sS \
"https://example-data.com/api/v1/companies/67" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/67"
);
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/67"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/67"
)
companie = res.json() {
"id": 67,
"name": "Price - Rolfson",
"slug": "price-rolfson-67",
"description": "Business-focused motivating help-desk",
"industryId": 2,
"headquartersCountryAlpha2": "EG",
"employeeCount": 2782,
"foundedYear": 1981,
"websiteUrl": "https://www.price-rolfson.com",
"logoUrl": "https://picsum.photos/seed/company-67/200/200",
"isHiring": true,
"createdAt": "2020-02-03T03:40:19.193Z"
}