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