Hand LLC
- Size
- 18441 employees
- Founded
- 1989
- Location
- DE
Optional intangible matrices
Overview
companies / #21
Optional intangible matrices
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/21" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/21" ); 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/21"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/21"
)
companie = res.json() Response
{
"id": 21,
"name": "Hand LLC",
"slug": "hand-llc-21",
"description": "Optional intangible matrices",
"industryId": 25,
"headquartersCountryAlpha2": "DE",
"employeeCount": 18441,
"foundedYear": 1989,
"websiteUrl": null,
"logoUrl": "https://picsum.photos/seed/company-21/200/200",
"isHiring": true,
"createdAt": "2021-07-12T20:31:02.213Z"
}