Marks - Bednar
- Size
- 10810 employees
- Founded
- 2014
- Website
- https://www.marks-bednar.com
- Location
- FI
AI-driven next generation projection
companies / #34
AI-driven next generation projection
curl -sS \
"https://example-data.com/api/v1/companies/34" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/34"
);
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/34"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/34"
)
companie = res.json() {
"id": 34,
"name": "Marks - Bednar",
"slug": "marks-bednar-34",
"description": "AI-driven next generation projection",
"industryId": 26,
"headquartersCountryAlpha2": "FI",
"employeeCount": 10810,
"foundedYear": 2014,
"websiteUrl": "https://www.marks-bednar.com",
"logoUrl": "https://picsum.photos/seed/company-34/200/200",
"isHiring": false,
"createdAt": "2018-01-07T02:58:36.313Z"
}