Corkery - Wunsch
- Size
- 1-10
- Founded
- 2005
- Website
- https://www.corkery-wunsch.com
Robust secondary moratorium
orgs / #29
Robust secondary moratorium
curl -sS \
"https://example-data.com/api/v1/orgs/29" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orgs/29"
);
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/29"
);
const org = (await res.json()) as Org;import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/29"
)
org = res.json() {
"id": 29,
"name": "Corkery - Wunsch",
"slug": "corkery-wunsch",
"description": "Robust secondary moratorium",
"industryId": 33,
"size": "1-10",
"foundedYear": 2005,
"websiteUrl": "https://www.corkery-wunsch.com",
"logoUrl": "https://picsum.photos/seed/org-29/200/200",
"createdAt": "2026-01-31T10:22:07.909Z",
"updatedAt": "2026-05-04T03:18:28.728Z"
}