example-data.com
Menu
Browse docs and collections

Overview

companies / #68

Jacobs - Kub

Jacobs - Kub

Size
38012 employees
Founded
2017
Location
FI

Polarised dynamic capability

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 68,
  "name": "Jacobs - Kub",
  "slug": "jacobs-kub-68",
  "description": "Polarised dynamic capability",
  "industryId": 9,
  "headquartersCountryAlpha2": "FI",
  "employeeCount": 38012,
  "foundedYear": 2017,
  "websiteUrl": null,
  "logoUrl": "https://picsum.photos/seed/company-68/200/200",
  "isHiring": false,
  "createdAt": "2013-01-18T10:27:13.897Z"
}