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