Cremin - Kautzer
- Size
- 11-50
- Founded
- 2021
Open-architected mobile process improvement
Overview
orgs / #2
Open-architected mobile process improvement
Request
curl example
curl -sS \ "https://example-data.com/api/v1/orgs/2" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/orgs/2" ); 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/2"
);
const org = (await res.json()) as Org; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/2"
)
org = res.json() Response
{
"id": 2,
"name": "Cremin - Kautzer",
"slug": "cremin-kautzer",
"description": "Open-architected mobile process improvement",
"industryId": 9,
"size": "11-50",
"foundedYear": 2021,
"websiteUrl": "https://example.com/orgs/cremin-kautzer",
"logoUrl": "https://picsum.photos/seed/org-2/200/200",
"createdAt": "2026-02-21T10:57:45.327Z",
"updatedAt": "2026-02-23T11:54:26.403Z"
}