Hidden Gems
- Size
- 6 members
Curso angelus sunt absque provident cui.
groups / #25
Curso angelus sunt absque provident cui.
curl -sS \
"https://example-data.com/api/v1/groups/25" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/groups/25"
);
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/25"
);
const group = (await res.json()) as Group;import requests
res = requests.get(
"https://example-data.com/api/v1/groups/25"
)
group = res.json() {
"id": 25,
"name": "Hidden Gems",
"slug": "hidden-gems",
"description": "Curso angelus sunt absque provident cui.",
"memberCount": 6,
"isPublic": true,
"ownerUserId": 2,
"createdAt": "2024-05-29T02:15:02.624Z",
"updatedAt": "2025-03-11T04:28:39.715Z"
}