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