example-data.com
Menu
Browse docs and collections

Overview

companies / #66

Bruen, Shields and Ernser

Bruen, Shields and Ernser

Size
49743 employees
Founded
1995
Location
ES

Public-key bottom-line project

Component variants

Related

Referenced by

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/companies/66" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/companies/66"
);
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/66"
);
const company = (await res.json()) as Company;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/companies/66"
)
companie = res.json()

Response

{
  "id": 66,
  "name": "Bruen, Shields and Ernser",
  "slug": "bruen-shields-and-ernser-66",
  "description": "Public-key bottom-line project",
  "industryId": 11,
  "headquartersCountryAlpha2": "ES",
  "employeeCount": 49743,
  "foundedYear": 1995,
  "websiteUrl": null,
  "logoUrl": "https://picsum.photos/seed/company-66/200/200",
  "isHiring": false,
  "createdAt": "2014-10-12T20:06:40.652Z"
}