Bright Thinkers
- Size
- 10 members
Vociferor placeat autem aequitas maiores appello.
groups / #27
Vociferor placeat autem aequitas maiores appello.
curl -sS \
"https://example-data.com/api/v1/groups/27" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/groups/27"
);
const group = await res.json();import type { Group } from "https://example-data.com/types/groups.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/groups/27"
);
const group = (await res.json()) as Group;import requests
res = requests.get(
"https://example-data.com/api/v1/groups/27"
)
group = res.json() {
"id": 27,
"name": "Bright Thinkers",
"slug": "bright-thinkers",
"description": "Vociferor placeat autem aequitas maiores appello.",
"memberCount": 10,
"isPublic": false,
"ownerUserId": 136,
"createdAt": "2025-08-04T06:37:26.034Z",
"updatedAt": "2026-01-26T07:52:17.968Z"
}