Bernier LLC
- Size
- 12588 employees
- Founded
- 1982
- Location
- NZ
Robust coherent hardware
Overview
companies / #52
Robust coherent hardware
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/52" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/52" ); 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/52"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/52"
)
companie = res.json() Response
{
"id": 52,
"name": "Bernier LLC",
"slug": "bernier-llc-52",
"description": "Robust coherent hardware",
"industryId": 10,
"headquartersCountryAlpha2": "NZ",
"employeeCount": 12588,
"foundedYear": 1982,
"websiteUrl": "https://example.com/companies/bernier-llc",
"logoUrl": "https://picsum.photos/seed/company-52/200/200",
"isHiring": true,
"createdAt": "2019-08-24T10:11:03.461Z"
}