Abbott LLC
- Size
- 14368 employees
- Founded
- 2015
- Location
- CL
Stand-alone intangible throughput
Overview
companies / #60
Stand-alone intangible throughput
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/60" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/60" ); 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/60"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/60"
)
companie = res.json() Response
{
"id": 60,
"name": "Abbott LLC",
"slug": "abbott-llc-60",
"description": "Stand-alone intangible throughput",
"industryId": 22,
"headquartersCountryAlpha2": "CL",
"employeeCount": 14368,
"foundedYear": 2015,
"websiteUrl": "https://example.com/companies/abbott-llc",
"logoUrl": "https://picsum.photos/seed/company-60/200/200",
"isHiring": true,
"createdAt": "2016-12-08T21:06:18.927Z"
}