McGlynn, Bogisich and Toy
- Size
- 1-10
- Founded
- 2010
Triple-buffered high-level access
Overview
orgs / #5
Triple-buffered high-level access
Request
curl example
curl -sS \ "https://example-data.com/api/v1/orgs/5" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/orgs/5" ); 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/5"
);
const org = (await res.json()) as Org; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/5"
)
org = res.json() Response
{
"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"
}