Hidden Thinkers
- Size
- 13 members
Corrupti omnis annus soluta ambulo antiquus adaugeo animi.
groups / #51
Corrupti omnis annus soluta ambulo antiquus adaugeo animi.
curl -sS \
"https://example-data.com/api/v1/groups/51" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/groups/51"
);
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/51"
);
const group = (await res.json()) as Group;import requests
res = requests.get(
"https://example-data.com/api/v1/groups/51"
)
group = res.json() {
"id": 51,
"name": "Hidden Thinkers",
"slug": "hidden-thinkers",
"description": "Corrupti omnis annus soluta ambulo antiquus adaugeo animi.",
"memberCount": 13,
"isPublic": true,
"ownerUserId": 208,
"createdAt": "2024-12-08T13:05:42.636Z",
"updatedAt": "2025-06-21T22:26:58.650Z"
}