Creative Artists
- Size
- 5 members
Vilicus decet quo.
groups / #67
Vilicus decet quo.
curl -sS \
"https://example-data.com/api/v1/groups/67" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/groups/67"
);
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/67"
);
const group = (await res.json()) as Group;import requests
res = requests.get(
"https://example-data.com/api/v1/groups/67"
)
group = res.json() {
"id": 67,
"name": "Creative Artists",
"slug": "creative-artists",
"description": "Vilicus decet quo.",
"memberCount": 5,
"isPublic": true,
"ownerUserId": 17,
"createdAt": "2025-12-06T14:43:05.521Z",
"updatedAt": "2026-02-21T07:03:36.199Z"
}