Prohaska - Wiza
- Size
- 201-1000
- Founded
- 1999
Compatible high-level complexity
Overview
orgs / #23
Compatible high-level complexity
Request
curl example
curl -sS \ "https://example-data.com/api/v1/orgs/23" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/orgs/23" ); 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/23"
);
const org = (await res.json()) as Org; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/23"
)
org = res.json() Response
{
"id": 23,
"name": "Prohaska - Wiza",
"slug": "prohaska-wiza",
"description": "Compatible high-level complexity",
"industryId": null,
"size": "201-1000",
"foundedYear": 1999,
"websiteUrl": "https://example.com/orgs/prohaska-wiza",
"logoUrl": "https://picsum.photos/seed/org-23/200/200",
"createdAt": "2026-02-16T19:57:21.549Z",
"updatedAt": "2026-03-05T20:38:21.716Z"
}