Curious Makers
- Size
- 5 members
Celebrer cuppedia blanditiis triumphus stabilis pel.
groups / #48
Celebrer cuppedia blanditiis triumphus stabilis pel.
curl -sS \
"https://example-data.com/api/v1/groups/48" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/groups/48"
);
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/48"
);
const group = (await res.json()) as Group;import requests
res = requests.get(
"https://example-data.com/api/v1/groups/48"
)
group = res.json() {
"id": 48,
"name": "Curious Makers",
"slug": "curious-makers",
"description": "Celebrer cuppedia blanditiis triumphus stabilis pel.",
"memberCount": 5,
"isPublic": false,
"ownerUserId": 240,
"createdAt": "2024-06-22T13:08:33.248Z",
"updatedAt": "2025-05-30T14:41:07.213Z"
}