Upton - Tremblay
- Size
- 8383 employees
- Founded
- 2009
- Website
- https://www.upton-tremblay.com
- Location
- SE
Implemented immersive throughput
companies / #24
Implemented immersive throughput
curl -sS \
"https://example-data.com/api/v1/companies/24" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/24"
);
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/24"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/24"
)
companie = res.json() {
"id": 24,
"name": "Upton - Tremblay",
"slug": "upton-tremblay-24",
"description": "Implemented immersive throughput",
"industryId": 14,
"headquartersCountryAlpha2": "SE",
"employeeCount": 8383,
"foundedYear": 2009,
"websiteUrl": "https://www.upton-tremblay.com",
"logoUrl": "https://picsum.photos/seed/company-24/200/200",
"isHiring": false,
"createdAt": "2018-07-30T08:52:00.902Z"
}