Bechtelar and Sons
- Size
- 17517 employees
- Founded
- 2006
- Location
- SE
Implemented directional project
companies / #42
Implemented directional project
curl -sS \
"https://example-data.com/api/v1/companies/42" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/42"
);
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/42"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/42"
)
companie = res.json() {
"id": 42,
"name": "Bechtelar and Sons",
"slug": "bechtelar-and-sons-42",
"description": "Implemented directional project",
"industryId": 23,
"headquartersCountryAlpha2": "SE",
"employeeCount": 17517,
"foundedYear": 2006,
"websiteUrl": "https://www.bechtelar-and-sons.com",
"logoUrl": "https://picsum.photos/seed/company-42/200/200",
"isHiring": false,
"createdAt": "2024-06-13T08:06:06.634Z"
}