Ziemann LLC
- Size
- 201-1000
- Founded
- 1998
Sharable fault-tolerant instruction set
Overview
orgs / #20
Sharable fault-tolerant instruction set
Request
curl example
curl -sS \ "https://example-data.com/api/v1/orgs/20" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/orgs/20" ); const org = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/orgs.d.ts https://example-data.com/types/orgs.d.ts
import type { Org } from "./types/orgs";
const res = await fetch(
"https://example-data.com/api/v1/orgs/20"
);
const org = (await res.json()) as Org; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/20"
)
org = res.json() Response
{
"id": 20,
"name": "Ziemann LLC",
"slug": "ziemann-llc",
"description": "Sharable fault-tolerant instruction set",
"industryId": 26,
"size": "201-1000",
"foundedYear": 1998,
"websiteUrl": "https://example.com/orgs/ziemann-llc",
"logoUrl": "https://picsum.photos/seed/org-20/200/200",
"createdAt": "2024-11-22T19:03:40.158Z",
"updatedAt": "2026-01-10T15:22:08.611Z"
}