Crona - Schumm
- Size
- 15707 employees
- Founded
- 2010
- Location
- PL
Quality-focused AI-powered function
Overview
companies / #27
Quality-focused AI-powered function
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/27" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/27" ); 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/27"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/27"
)
companie = res.json() Response
{
"id": 27,
"name": "Crona - Schumm",
"slug": "crona-schumm-27",
"description": "Quality-focused AI-powered function",
"industryId": 18,
"headquartersCountryAlpha2": "PL",
"employeeCount": 15707,
"foundedYear": 2010,
"websiteUrl": "https://example.com/companies/crona-schumm",
"logoUrl": "https://picsum.photos/seed/company-27/200/200",
"isHiring": false,
"createdAt": "2015-04-27T12:43:48.513Z"
}