Prohaska Inc
- Size
- 1-10
- Founded
- 2011
- Website
- https://www.prohaska-inc.com
Future-proofed bifurcated knowledge user
orgs / #24
Future-proofed bifurcated knowledge user
curl -sS \
"https://example-data.com/api/v1/orgs/24" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orgs/24"
);
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/24"
);
const org = (await res.json()) as Org;import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/24"
)
org = res.json() {
"id": 24,
"name": "Prohaska Inc",
"slug": "prohaska-inc",
"description": "Future-proofed bifurcated knowledge user",
"industryId": 28,
"size": "1-10",
"foundedYear": 2011,
"websiteUrl": "https://www.prohaska-inc.com",
"logoUrl": "https://picsum.photos/seed/org-24/200/200",
"createdAt": "2025-10-15T04:46:32.683Z",
"updatedAt": "2025-11-16T07:17:19.559Z"
}