Cormier, Rogahn and Bogisich
- Size
- 11-50
- Founded
- 2024
Expanded fault-tolerant access
Overview
orgs / #27
Expanded fault-tolerant access
Request
curl example
curl -sS \ "https://example-data.com/api/v1/orgs/27" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/orgs/27" ); 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/27"
);
const org = (await res.json()) as Org; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/27"
)
org = res.json() Response
{
"id": 27,
"name": "Cormier, Rogahn and Bogisich",
"slug": "cormier-rogahn-and-bogisich",
"description": "Expanded fault-tolerant access",
"industryId": 8,
"size": "11-50",
"foundedYear": 2024,
"websiteUrl": "https://example.com/orgs/cormier-rogahn-and-bogisich",
"logoUrl": "https://picsum.photos/seed/org-27/200/200",
"createdAt": "2026-02-26T10:30:39.166Z",
"updatedAt": "2026-04-20T17:01:29.448Z"
}