example-data.com
Menu
Browse docs and collections

Overview

companies / #7

Bins, Robel and Rogahn

Bins, Robel and Rogahn

Size
3112 employees
Founded
2011
Location
AE

Managed client-server emulation

Component variants

Related

References

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 7,
  "name": "Bins, Robel and Rogahn",
  "slug": "bins-robel-and-rogahn-7",
  "description": "Managed client-server emulation",
  "industryId": 3,
  "headquartersCountryAlpha2": "AE",
  "employeeCount": 3112,
  "foundedYear": 2011,
  "websiteUrl": null,
  "logoUrl": "https://picsum.photos/seed/company-7/200/200",
  "isHiring": true,
  "createdAt": "2014-08-18T18:15:03.544Z"
}