Friendly Coders
- Size
- 8 members
Terga bos suppellex aptus vomer esse vero censura stips temporibus.
groups / #15
Terga bos suppellex aptus vomer esse vero censura stips temporibus.
curl -sS \
"https://example-data.com/api/v1/groups/15" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/groups/15"
);
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/15"
);
const group = (await res.json()) as Group;import requests
res = requests.get(
"https://example-data.com/api/v1/groups/15"
)
group = res.json() {
"id": 15,
"name": "Friendly Coders",
"slug": "friendly-coders",
"description": "Terga bos suppellex aptus vomer esse vero censura stips temporibus.",
"memberCount": 8,
"isPublic": true,
"ownerUserId": 221,
"createdAt": "2026-01-09T02:15:24.271Z",
"updatedAt": "2026-01-23T19:54:37.975Z"
}