Bright Builders
- Size
- 5 members
Aperte vestrum utroque celo deficio.
groups / #79
Aperte vestrum utroque celo deficio.
curl -sS \
"https://example-data.com/api/v1/groups/79" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/groups/79"
);
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/79"
);
const group = (await res.json()) as Group;import requests
res = requests.get(
"https://example-data.com/api/v1/groups/79"
)
group = res.json() {
"id": 79,
"name": "Bright Builders",
"slug": "bright-builders",
"description": "Aperte vestrum utroque celo deficio.",
"memberCount": 5,
"isPublic": true,
"ownerUserId": 29,
"createdAt": "2026-03-05T05:50:19.480Z",
"updatedAt": "2026-05-09T21:44:48.295Z"
}