Bins, Robel and Rogahn
- Size
- 3112 employees
- Founded
- 2011
- Location
- AE
Managed client-server emulation
companies / #7
Managed client-server emulation
curl -sS \
"https://example-data.com/api/v1/companies/7" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/7"
);
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/7"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/7"
)
companie = res.json() {
"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"
}