Ziemann LLC
- Size
- 201-1000
- Founded
- 1998
- Website
- https://www.ziemann-llc.com
Sharable fault-tolerant instruction set
orgs / #20
Sharable fault-tolerant instruction set
curl -sS \
"https://example-data.com/api/v1/orgs/20" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orgs/20"
);
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/20"
);
const org = (await res.json()) as Org;import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/20"
)
org = res.json() {
"id": 20,
"name": "Ziemann LLC",
"slug": "ziemann-llc",
"description": "Sharable fault-tolerant instruction set",
"industryId": 26,
"size": "201-1000",
"foundedYear": 1998,
"websiteUrl": "https://www.ziemann-llc.com",
"logoUrl": "https://picsum.photos/seed/org-20/200/200",
"createdAt": "2024-11-22T19:03:40.158Z",
"updatedAt": "2026-01-10T15:22:08.611Z"
}