Altenwerth - Corkery
- Size
- 51-200
- Founded
- 1991
Exclusive tertiary synergy
orgs / #26
Exclusive tertiary synergy
curl -sS \
"https://example-data.com/api/v1/orgs/26" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orgs/26"
);
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/26"
);
const org = (await res.json()) as Org;import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/26"
)
org = res.json() {
"id": 26,
"name": "Altenwerth - Corkery",
"slug": "altenwerth-corkery",
"description": "Exclusive tertiary synergy",
"industryId": 18,
"size": "51-200",
"foundedYear": 1991,
"websiteUrl": null,
"logoUrl": "https://picsum.photos/seed/org-26/200/200",
"createdAt": "2024-12-24T05:51:36.825Z",
"updatedAt": "2025-12-31T04:54:28.737Z"
}