McGlynn, Bogisich and Toy
- Size
- 1-10
- Founded
- 2010
Triple-buffered high-level access
orgs / #5
Triple-buffered high-level access
curl -sS \
"https://example-data.com/api/v1/orgs/5" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orgs/5"
);
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/5"
);
const org = (await res.json()) as Org;import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/5"
)
org = res.json() {
"id": 5,
"name": "McGlynn, Bogisich and Toy",
"slug": "mcglynn-bogisich-and-toy",
"description": "Triple-buffered high-level access",
"industryId": 18,
"size": "1-10",
"foundedYear": 2010,
"websiteUrl": null,
"logoUrl": "https://picsum.photos/seed/org-5/200/200",
"createdAt": "2025-07-15T19:54:22.348Z",
"updatedAt": "2025-10-13T03:32:49.227Z"
}