Bold Readers
- Size
- 11 members
Ustulo cogo corporis repellat temptatio coniuratio cultura minima crebro.
Overview
groups / #37
Ustulo cogo corporis repellat temptatio coniuratio cultura minima crebro.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/groups/37" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/groups/37" ); 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/37"
);
const group = (await res.json()) as Group; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/groups/37"
)
group = res.json() Response
{
"id": 37,
"name": "Bold Readers",
"slug": "bold-readers",
"description": "Ustulo cogo corporis repellat temptatio coniuratio cultura minima crebro.",
"memberCount": 11,
"isPublic": true,
"ownerUserId": 33,
"createdAt": "2025-12-23T02:59:54.283Z",
"updatedAt": "2026-03-04T09:42:08.588Z"
}