Bold Gems
- Size
- 9 members
Trado caput sublime.
Overview
groups / #74
Trado caput sublime.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/groups/74" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/groups/74" ); 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/74"
);
const group = (await res.json()) as Group; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/groups/74"
)
group = res.json() Response
{
"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"
}