Hand LLC
- Size
- 18441 employees
- Founded
- 1989
- Location
- DE
Optional intangible matrices
companies / #21
Optional intangible matrices
curl -sS \
"https://example-data.com/api/v1/companies/21" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/21"
);
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/21"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/21"
)
companie = res.json() {
"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"
}