Beer - Doyle
- Size
- 10577 employees
- Founded
- 1996
- Website
- https://www.beer-doyle.com
- Location
- PE
Stand-alone intermediate implementation
companies / #63
Stand-alone intermediate implementation
curl -sS \
"https://example-data.com/api/v1/companies/63" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/63"
);
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/63"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/63"
)
companie = res.json() {
"id": 63,
"name": "Beer - Doyle",
"slug": "beer-doyle-63",
"description": "Stand-alone intermediate implementation",
"industryId": 18,
"headquartersCountryAlpha2": "PE",
"employeeCount": 10577,
"foundedYear": 1996,
"websiteUrl": "https://www.beer-doyle.com",
"logoUrl": "https://picsum.photos/seed/company-63/200/200",
"isHiring": true,
"createdAt": "2014-01-06T21:07:34.494Z"
}