Bold Gems
- Size
- 9 members
Trado caput sublime.
groups / #74
Trado caput sublime.
curl -sS \
"https://example-data.com/api/v1/groups/74" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/groups/74"
);
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/74"
);
const group = (await res.json()) as Group;import requests
res = requests.get(
"https://example-data.com/api/v1/groups/74"
)
group = res.json() {
"id": 74,
"name": "Bold Gems",
"slug": "bold-gems",
"description": "Trado caput sublime.",
"memberCount": 9,
"isPublic": true,
"ownerUserId": 69,
"createdAt": "2026-04-23T03:24:14.650Z",
"updatedAt": "2026-05-15T16:25:43.735Z"
}