Modern Readers
- Size
- 7 members
Color bellicus corona cum autem.
Overview
groups / #72
Color bellicus corona cum autem.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/groups/72" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/groups/72" ); const group = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/groups.d.ts https://example-data.com/types/groups.d.ts
import type { Group } from "./types/groups";
const res = await fetch(
"https://example-data.com/api/v1/groups/72"
);
const group = (await res.json()) as Group; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/groups/72"
)
group = res.json() Response
{
"id": 72,
"name": "Modern Readers",
"slug": "modern-readers",
"description": "Color bellicus corona cum autem.",
"memberCount": 7,
"isPublic": true,
"ownerUserId": 52,
"createdAt": "2025-11-27T01:07:15.202Z",
"updatedAt": "2026-03-25T11:49:28.985Z"
}