Kovacek and Sons
- Size
- 1-10
- Founded
- 2010
- Website
- https://www.kovacek-and-sons.com
Ergonomic analyzing benchmark
orgs / #13
Ergonomic analyzing benchmark
curl -sS \
"https://example-data.com/api/v1/orgs/13" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orgs/13"
);
const org = await res.json();import type { Org } from "https://example-data.com/types/orgs.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/orgs/13"
);
const org = (await res.json()) as Org;import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/13"
)
org = res.json() {
"id": 13,
"name": "Kovacek and Sons",
"slug": "kovacek-and-sons",
"description": "Ergonomic analyzing benchmark",
"industryId": 30,
"size": "1-10",
"foundedYear": 2010,
"websiteUrl": "https://www.kovacek-and-sons.com",
"logoUrl": "https://picsum.photos/seed/org-13/200/200",
"createdAt": "2025-06-13T11:48:14.177Z",
"updatedAt": "2026-03-16T04:38:26.855Z"
}