Curious Creators
- Size
- 13 members
Ait alienus cedo tollo error perferendis.
groups / #21
Ait alienus cedo tollo error perferendis.
curl -sS \
"https://example-data.com/api/v1/groups/21" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/groups/21"
);
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/21"
);
const group = (await res.json()) as Group;import requests
res = requests.get(
"https://example-data.com/api/v1/groups/21"
)
group = res.json() {
"id": 21,
"name": "Curious Creators",
"slug": "curious-creators",
"description": "Ait alienus cedo tollo error perferendis.",
"memberCount": 13,
"isPublic": true,
"ownerUserId": 19,
"createdAt": "2025-02-21T23:59:46.450Z",
"updatedAt": "2026-02-24T06:21:16.332Z"
}